最近項目剛開始起動,一些底層庫編寫用到boost,在編譯過程當中遇到一些奇怪問題,在此記錄下函數
1.庫的鏈接順序問題,好比a依賴b,鏈接的時候要先鏈接a,eg -L -a -b;get
2.boost庫的問題,庫裏面用到boost,生成庫文件沒有問題,可是到工程文件生成引用到庫文件的時候,提示:編譯
undefined reference to `boost::system::get_system_category()'引用
undefined reference to `boost::system::get_generic_category()'方法
查看了源代碼,原來須要定義宏 BOOST_SYSTEM_NO_DEPRECATEDerror
# ifndef BOOST_SYSTEM_NO_DEPRECATED
inline const error_category & get_system_category() { return system_category(); }
inline const error_category & get_generic_category() { return generic_category(); }
inline const error_category & get_posix_category() { return generic_category(); }
static const error_category & posix_category = generic_category();
static const error_category & errno_ecat = generic_category();
static const error_category & native_ecat = system_category();
# endif項目
因此在生成庫文件時候(個人是libkernel.a)要定義這個宏,static
boost system庫確實沒有找到這幾個函數,因此你的工程最好也定義這個宏,不要引用這些方法。di