From: Marcin @ a. <ast...@o2...> - 2010-06-25 14:52:22
|
Hi, I think this error occurs because your shell does not recognize ifort command. Try to give such a commend in your shell: ln -s /your/ifort/installation/directory /your/shell/commands/directory i.e. ln -s /opt/intel/Compiler/11.1/064/bin/ia32/ifort /usr/bin or go to this line in mesa/utils/makefile_header: ifeq ($(FC),ifort) and replace "ifort" with a full path to your ifort executable. In my makefile_header file it looks like this: ifeq ($(FC),/opt/intel/Compiler/11.1/064/bin/ia32/ifort) I hope it will fix this issue. BR Marcin Mackiewicz On 2010-06-25 16:26, Michelle Dolan wrote: > Hello, > > I'm attempting to install the update. Using svn -r 2469 update, then > ./clean and everything is fine. After trying to do ./install I get this: > > checking if ndiff is installed ... > yes! > > /Users/shelley/Research/MESA2469/mesa/const > building const package. > > ifort -vec-report0 -traceback -error-limit 6 -openmp -threads > -I../public -I../private -I../../include -warn all -warn nounused > -implicitnone -O2 -c -fixed -132 ../public/const_def.f > make: ifort: Command not found > make: *** [const_def.o] Error 127 > > /Users/shelley/Research/MESA2469/mesa/const/make > FAILED > > > I'm running on a MacBook and do have gfortran and g77, but not f77 or > ifort. > > ~MDolan > > > ------------------------------------------------------------------------------ > ThinkGeek and WIRED's GeekDad team up for the Ultimate > GeekDad Father's Day Giveaway. ONE MASSIVE PRIZE to the > lucky parental unit. See the prize list and enter to win: > http://p.sf.net/sfu/thinkgeek-promo > > > _______________________________________________ > mesa-users mailing list > mes...@li... > https://lists.sourceforge.net/lists/listinfo/mesa-users |