Recent content by Ambrus

  1. A

    Fortran Free Program for Compiling Windows Executables from Fortran77 Files

    So I'm using gfortran: -compile with gfortran.exe with the -c option to prooduce .o files -convert the .res resource file into an object file (.o) with res2coff.exe -use ld.exe to link the object files mentioned above and MY library file, and some other library files too provided by gfortran...
  2. A

    Fortran Free Program for Compiling Windows Executables from Fortran77 Files

    I installed gfortran and tried it on some small programs. Now I would like to link my library file, and resouce file with my object files. So about the library: It only accepts files with a name like: libfilename.a (like in unix) and I have a filename.lib (windows). Is changeing the filename...
  3. A

    Fortran Free Program for Compiling Windows Executables from Fortran77 Files

    No, not yet. Do you have experience with compiling windows executables in gfortran?
  4. A

    Fortran Free Program for Compiling Windows Executables from Fortran77 Files

    Hi! I would like to compile some *.for files (only standard Fortran77 statements) which only contains some subroutines and functions and link them with a *.res resource file and a *.lib library file (supplied by developers) into a windows executable. Is there any FREE program to achieve...
Back
Top