昨天晚上很沮喪,一個究竟考驗的程式在升級使用了最新的MongoDB 2.4 C++ driver後報連結失敗。折騰到很晚也沒有搞定。
/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../lib/libmongoclient.a(log.o): In function mongo::LoggingManager::start(std::string const&, bool)': log.cpp:(.text._ZN5mongo14LoggingManager5startERKSsb[_ZN5mongo14LoggingManager5startERKSsb]+0x4c): undefined reference toboost::filesystem3::detail::status(boost::filesystem3::path const&, boost::system::error_code*)' log.cpp:(.text._ZN5mongo14LoggingManager5startERKSsb[_ZN5mongo14LoggingManager5startERKSsb]+0x86): undefined reference to boost::filesystem3::detail::status(boost::filesystem3::path const&, boost::system::error_code*)' log.cpp:(.text._ZN5mongo14LoggingManager5startERKSsb[_ZN5mongo14LoggingManager5startERKSsb]+0xb8): undefined reference toboost::filesystem3::detail::status(boost::filesystem3::path const&, boost::system::error_code*)' collect2: error: ld returned 1 exit status make[2]: * [bin/cml_cloud] Error 1 make[1]: * [bin/CMakeFiles/cml_cloud.dir/all] Error 2 make: * [all]
打算重新用GCC編譯boost庫,然後再重新編譯所有的應用程式依賴的庫。打住,突然想起過去多年前的一個經驗,調換一下連結順序,居然搞定了。
這是我在Stackoverflow上的文章,同時也有我的答案。
http://stackoverflow.com/questions/16159356/mongodb-2-4-c-driver-causes-link-error/16166274?noredirect=1#16166274
然後一個熱心人告訴我可以參考GCC的文章,解釋了連結順序。
http://www.network-theory.co.uk/docs/gccintro/gccintro_18.html
總結一句話,A庫依賴B庫,A庫要在左邊。