I am currently running again using Apple-provided non-llvm gcc to see if this fixes the problem.
********************************************
FAILURE REPORT:
********************************************
ld: warning: directory not found for option '-L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/'
ld: library not found for -lgomp
clang: error: linker command failed with exit code 1 (use -v to see invocation)
ld: warning: directory not found for option '-L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/'
ld: warning: directory not found for option '-L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/'
ld: warning: directory not found for option '-L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/'
ld: warning: directory not found for option '-L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/'
ld: library not found for -lgomp
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: Command "/usr/bin/clang -bundle -undefined dynamic_lookup -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib/ -L/Users/plaplant/Documents/school/grad/Second_Year/Spring_13/yt-x86_64/lib64/ -mmacosx-version-min=10.7 build/temp.macosx-10.4-x86_64-2.7/yt/utilities/lib/geometry_utils.o -lm -o yt/utilities/lib/geometry_utils.so -fopenmp" failed with exit status 1
********************************************
********************************************
Just a comment:
Using the full path to the compilers (e.g. using /usr/bin/gcc instead of gcc) will fail because of a sed command (line 329 in install_script.sh) using the forward slash as a separator. If the compilers are in your bath, you might want to specify them directly by name, rather than the full pathname.
The install script should probably be changed to use something other than forward slash as the delimiter, at least in this case where it might get mangled with pathnames. Something like changing
... -e "s/CC=gcc/CC=${CC}/ ...
to
... -e "s|CC=gcc|CC=${CC}| ...
Chris
_______________________________________________
yt-users mailing list
yt-users@lists.spacepope.org
http://lists.spacepope.org/listinfo.cgi/yt-users-spacepope.org