Mac OS 安裝boost

來源:互聯網
上載者:User

標籤:xcode boost

剛開始學習羅劍鋒的《Boost程式庫完全開發指南》,在Mac OS下按照Boost時出現了一些問題及解決方案。

環境:OS Yosemite(10.10.3)

Xcode:version 6.3

Boost:1.58.0


操作步驟:

  1. 下載Boost並解壓;

  2. 依次./bootstrap.sh ./b2 ./b2 install;

  3. 在Xcode中進行配置(控制台工程),build Setting中添加Header Search Paths和Library Search Paths(為步驟2中安裝路徑),Build Phases中Link Binary With Libraries添加libboost_system.a;

  4. 測試:mian函數中#include "boost/asio.hpp",編譯。


出現錯誤dyld: Library not loaded: libboost_system.dylib Referenced from: /Users/ShaunYi/Library/Developer/Xcode/DerivedData/LearningBoost-djvlfrwiebzlncahwbsrniqfduuu/Build/Products/Debug/LearningBoost Reason: image not found;

添加libboost_system.dylib後可以編譯成功,但執行時會出現如下錯誤:dyld_fatal_error


原因:因為XCode5 完全切換到了LLVM,丟棄了GCC,所以使用舊版本GCC編譯的boost庫會出現load library的錯誤(dylib/dlopen???不是太明白原因),所以必須使用LLVM重新編譯庫,最好是編譯成靜態。


解決方案:

編譯boost庫時使用如下命令:./bootstrap.sh toolset=clang;./b2 toolset=clang --without-mpi cxxflags="-arch i386 -arch x86_64 -fvisibility=hidden -fvisibility-inlines-hidden -std=c++11 -stdlib=libc++ -ftemplate-depth=512" linkflags="-stdlib=libc++" link=static stage install



Mac OS 安裝boost

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.