I am running some code that has compiled however when i run the code i get the following error for the Boost library.
The error is as follows...
dyld: library not loaded: libboost_serialization.dylib
Looking in opt/local/lib i have the following library installed for boost.
libboost_serialization-mt.dylib
Any ideas why this is? How do i fix this if i have the wrong boost library installed?
I am using OSX El Capitan 10.11.3
Regards,
Daniel
You could try creating a symlink.
(cd /opt/local/lib/ && sudo ln -s libboost_serialization-mt.dylib libboost_serialization.dylib)