On 15/09/2014, 5:25 PM, Andre Mikulec wrote:
>
> Hi,
> I have a Fortran 77 subroutine (dll).
>
> On windows XP, how would I 'debug it(Fortran) within R' using gdb?
>
> This is how I made it.
> --
>
> R CMD SHLIB main.f
>
> gfortran -m32 -O3 -mtune=core2 -c main.f -o
Hi,
I have a Fortran 77 subroutine (dll).
On windows XP, how would I 'debug it(Fortran) within R' using gdb?
This is how I made it.
--
R CMD SHLIB main.f
gfortran -m32 -O3 -mtune=core2 -c main.f -o main.o
gcc -m32 -shared -s -static-libgcc -o main.dll tmp.def main.o