| 246 | ==== Issues and solutions==== |
| 247 | |
| 248 | 1. Link or run-time error: "file not found: libiomp5.dylib", or run-time error: |
| 249 | {{{ |
| 250 | dyld: Library not loaded: libiomp5.dylib |
| 251 | Referenced from: /opt/intel/Compiler/11.1/076/Frameworks/mkl/lib/em64t/libmkl_intel_thread.dylib |
| 252 | Reason: image not found |
| 253 | Trace/BPT trap |
| 254 | }}} |
| 255 | Please see this article for solution: http://software.intel.com/en-us/articles/xcode-link-error-file-not-found-libiomp5dylib/ [[BR]] |
| 256 | 1. Link error: |
| 257 | {{{ |
| 258 | Undefined symbols: |
| 259 | "_USC_G728_Fxns", referenced from: |
| 260 | _ipp_codec in libpjmedia-codec-i386-apple-darwin9.8.0.a(ipp_codecs.o) |
| 261 | "_USC_G729AFP_Fxns", referenced from: |
| 262 | _ipp_codec in libpjmedia-codec-i386-apple-darwin9.8.0.a(ipp_codecs.o) |
| 263 | "_USC_AMRWB_Fxns", referenced from: |
| 264 | _ipp_codec in libpjmedia-codec-i386-apple-darwin9.8.0.a(ipp_codecs.o) |
| 265 | ... |
| 266 | }}} |
| 267 | That's probably because the IPP samples were compiled with Intel compiler and not gcc. See ''Building IPP samples'' above. |
| 268 | |
| 269 | |