From: Ken S. <ke...@as...> - 2011-09-13 22:30:07
|
Hi all. When trying to install MESA v3611 with ifort v12.1, I run into this problem: ------------------------ dyld: Library not loaded: libiomp5.dylib Referenced from: /Users/kenshen/Documents/programs/mesa/const/test/./tester Reason: image not found ./rn: line 1: 66257 Trace/BPT trap ./tester ------------------------ In the past, I fixed this by setting the appropriate path in my .bash_profile: ------------------------ export DYLD_LIBRARY_PATH="/opt/intel/composerxe/lib" ------------------------ However, this no longer seems to fix it. The tester executable is still being linked without the appropriate library directory, as evidenced by an otool command: ------------------------ Ken-Shens-MacBook-Pro:test kenshen$ otool -L tester tester: libiomp5.dylib (compatibility version 5.0.0, current version 5.0.0) /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 830.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 125.2.11) ------------------------ What silly error am I committing?? Thanks, Ken |