开发者

Boost Regex not playing welll with Snow leopard

开发者 https://www.devze.com 2023-01-16 06:00 出处:网络
So I inherited code written in C++ that uses the Boost library. I could compile (using Code Blocks) and run the code on Linux Ubuntu but when I ported it over to the mac and installed the boost librar

So I inherited code written in C++ that uses the Boost library. I could compile (using Code Blocks) and run the code on Linux Ubuntu but when I ported it over to the mac and installed the boost library, I can compile it using code blocks (and specifying the location of the regex libraries) but it won't run.

开发者_JAVA技巧

It just gives me the error:

$ ./BLAH_PD

dyld: Library not loaded: libboost_regex.dylib Referenced from: /Users/spinach/Desktop/B/BLAH/bin/Release/./BLAH_PD Reason: image not found Trace/BPT trap

I'm not sure what to do next but any help would be greatly appreciated.

David


You need to set the DYLD_LIBRARY_PATH environment variable to include the path where you installed the compiled Boost libs.


Did you follow these directions?
Boost.Regex is not a header only library. You will need to install/compile the .dynlib. If you did this, did you remember to correctly link it? (-llibboost_regex -LPATH_TO_BOOST_BIN)

0

精彩评论

暂无评论...
验证码 换一张
取 消