I want to know which make file to use. I have a pc computer intel 386 with Ubuntu 7.10. I use the makefile.linux and have this error
f90 -O3 -byte_kinds -free -c diolib.f
make: f90: No se encontró el programa
make: *** [diolib.o] Error 127
I dont have f90 I have f95. How can I to resolv this problem??
Instalation problems
Moderators: Global Moderator, Moderator
-
- Newbie
- Posts: 4
- Joined: Mon Jun 09, 2008 6:23 pm
- License Nr.: 882 5-986
Instalation problems
Last edited by silviautpl on Wed Jun 11, 2008 9:44 pm, edited 1 time in total.
-
- Administrator
- Posts: 2921
- Joined: Tue Aug 03, 2004 8:18 am
- License Nr.: 458
Instalation problems
the makefile which has to be used depends mainly on the OS (linux), theprocessor type and the compiler you have installed. makefile.linux probably is ok for you (you have used that one, haven't you?).
However, as you have i368, the path given for the precompiler (CPP, given in your makefile, like /usr/lib/gcc-lib/i486-linux/2.7.2/cpp in makefile.linux ) most probably is not correct:
please check whether the precompiler has generated the diolib.f file from diolib.F (probably it has not)
--> please check the correct path for your precompiler on your system ('which cpp') and change that line in your makefile accordingly.
However, as you have i368, the path given for the precompiler (CPP, given in your makefile, like /usr/lib/gcc-lib/i486-linux/2.7.2/cpp in makefile.linux ) most probably is not correct:
please check whether the precompiler has generated the diolib.f file from diolib.F (probably it has not)
--> please check the correct path for your precompiler on your system ('which cpp') and change that line in your makefile accordingly.
Last edited by admin on Thu Jun 12, 2008 1:37 pm, edited 1 time in total.