I'm fairly new to Eclipse and Photran. I followed the tutorial on the wiki for the HelloWorld program, which worked perfectly.
Now I'm trying to compile a bigger program with several subroutines and get the following error message:
11:54:54 **** Build of configuration Debug for project Testing ****
make all
'Building file: ../Testing.f77'
'Invoking: GNU Fortran Compiler'
gfortran -funderscoring -O0 -g -Wall -c -fmessage-length=0 -o "Testing.o" "../Testing.f77"
gfortran: warning: ../Testing.f77: linker input file unused because linking not done
'Finished building: ../Testing.f77'
' '
'Building target: Testing'
'Invoking: GNU Fortran Linker'
gfortran -o "Testing" ./Testing.o
gfortran: error: ./Testing.o: No such file or directory
make: *** [Testing] Error 1
according to your message I have a question. Do you already solved this problem? I'm asking because I have the same error and don't know how to solve it. Any idea ?