Topic: Iargc() and Getarg()
)/Trying to compile some relatively old (90/95) code, and get the following compile time errors:
Generating target.exe
..\Test symbol table\F77_CLEANUP source code.o:F77_CLEANUP source code.f:(.text+0x15c0): undefined reference to `iargc_'
..\Test symbol table\F77_CLEANUP source code.o:F77_CLEANUP source code.f:(.text+0x1883): undefined reference to `getarg_'
..\Test symbol table\F77_CLEANUP source code.o:F77_CLEANUP source code.f:(.text+0x1b40): undefined reference to `getarg_'
collect2.exe: error: ld returned 1 exit status
Error: Last command making (target.exe) returned a bad status
Error: Make execution terminated
Apparently iargc() and getarg() are intrinsic functions for GNU 77, which this compiler is based upon? Is this correct, and if so, are there any compiler or linker settings that need to be in place to compile properly?
Thanks!