How to link against boost.system with cmake - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:10:34Z http://stackoverflow.com/feeds/question/1065672 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1065672/how-to-link-against-boost-system-with-cmake 1 How to link against boost.system with cmake Janusz 2009-06-30T19:54:29Z 2009-07-01T17:01:23Z <p>I use a cmake generated makefile to compile a c++ file that depends on the boost filesystem library. </p> <p>During the linking process I get the following error: </p> <pre> Undefined symbols: "boost::system::get_generic_category()", referenced from: __static_initialization_and_destruction_0(int, int)in FaceRecognizer.cpp.o __static_initialization_and_destruction_0(int, int)in FaceRecognizer.cpp.o __static_initialization_and_destruction_0(int, int)in FaceRecognizer.cpp.o "boost::system::get_system_category()", referenced from: __static_initialization_and_destruction_0(int, int)in FaceRecognizer.cpp.o __static_initialization_and_destruction_0(int, int)in FaceRecognizer.cpp.o ld: symbol(s) not found collect2: ld returned 1 exit status make[2]: *** [src/ImageMarker] Error 1 </pre> <p>The action from the makefile that generates this error is this line: </p> <pre> cd /Users/janusz/Documents/workspace/ImageMarker/Debug/src && /opt/local/bin/cmake -E cmake_link_script CMakeFiles/ImageMarker.dir/link.txt --verbose=1 /usr/bin/c++ -O3 -Wall -Wno-deprecated -g -verbose -Wl,-search_paths_first -headerpad_max_install_names -fPIC CMakeFiles/ImageMarker.dir/ImageMarker.cpp.o CMakeFiles/ImageMarker.dir/Image.cpp.o CMakeFiles/ImageMarker.dir/utils.cpp.o CMakeFiles/ImageMarker.dir/XMLWriter.cpp.o CMakeFiles/ImageMarker.dir/FaceRecognizer.cpp.o -o ImageMarker -L/opt/local/lib ../libTinyXml.a /opt/local/lib/libboost_filesystem-mt.dylib </pre> <p>Some googling showed me that this error seems to be common on macs with the boost file system library because I have to link against a boost.system library or make my project depending on the boost.system library.</p> <p>How do i force cmake to link against the library without hardcoding the library path?</p> <p>Here the result from otool:</p> <pre><code>otool -L /opt/local/lib/libboost_filesystem-mt.dylib /opt/local/lib/libboost_filesystem-mt.dylib: /opt/local/lib/libboost_filesystem-mt.dylib (compatibility version 0.0.0, current version 0.0.0) /opt/local/lib/libboost_system-mt.dylib (compatibility version 0.0.0, current version 0.0.0) /usr/lib/libstdc++.6.dylib (compatibility version 7.0.0, current version 7.4.0) /usr/lib/libgcc_s.1.dylib (compatibility version 1.0.0, current version 1.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 111.0.0) </code></pre> http://stackoverflow.com/questions/1065672/how-to-link-against-boost-system-with-cmake/1065729#1065729 3 Answer by Maik Beckmann for How to link against boost.system with cmake Maik Beckmann 2009-06-30T20:02:37Z 2009-06-30T20:02:37Z <p>On linux CMake figures itself that boost_filesystem is linked against boost_system. Obviously you have to tell it explicitly on Mac: </p> <pre><code>find_package(Boost COMPONENTS system filesystem REQUIRED) #... target_link_libraries(mytarget ${Boost_FILESYSTEM_LIBRARY} ${Boost_SYSTEM_LIBRARY} ) </code></pre>