Boost 编译

 

提醒所有的作者

庞大的开源库有自己的编译脚本或者程序,最好不要自行编译,否则会很痛苦的

{如:在编译前会定义某些宏}

如ffmpeg opencv 等这些

 

windows :

cd boost_1_71_0

./bootstrap.bat

./b2.exe

linux:

./b2.exe --pre.......

 

 

参考 https://blog.csdn.net/hursing/article/details/45439087

 

 

{

  • 首先编译Boost.Build
        修改sh的文件属性
         
 chmod +x bootstrap.sh
 chmod +x ./tools/build/v2/engine/build.sh
 
执行 bootstrap.sh
./bootstrap.sh

生成b2可执行程序

  • 编译Boost库
    // 用Clang编译boost file sytem
    ./b2 toolset=clang cxxflags="-arch x86_64" linkflags="-arch x86_64" --with-filesystem      

    The Boost C++ Libraries were successfully built!
    The following directory should be added to compiler include paths:
        /Users/liwei/DEV/Project/boost_1_50_0
    The following directory should be added to linker library paths:
        /Users/liwei/DEV/Project/boost_1_50_0/stage/lib


    最后生成的文件保存在./stage/lib目录

     
    默认编译出来的是Release版本,编译debug版本:
    ./b2 toolset=clang cxxflags="-arch x86_64" linkflags="-arch x86_64" --with-filesystem variant=debug --stagedir=./stage/x64/debug





    速度像飞一样!


    在xcode中设置boost库

}

 

posted @   YZFHKMS-X  阅读(158)  评论(0编辑  收藏  举报
编辑推荐:
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 单元测试从入门到精通
· 上周热点回顾(3.3-3.9)
· winform 绘制太阳,地球,月球 运作规律
历史上的今天:
2019-11-12 QT install
2019-11-12 Android Studio 安装及汉化
2019-11-12 Unity 调用android
2019-11-12 JAVA 调用c++ 扩展 批评那些垃圾,
2019-11-12 JAVA java调用C++动态链接库dll,有详细过程。VS2015+Eclipse以及失败解决方案
2019-11-12 JAVA call dll
2019-11-12 JAVA C 数据类型对应
点击右上角即可分享
微信分享提示