我是靠谱客的博主 美丽野狼,这篇文章主要介绍C++ boost库的安装过程详解,现在分享给大家,希望可以做个参考。

Windows安装boost库

下载链接:https://www.boost.org/
学习链接:https://theboostcpplibraries.com/

1,下载解压,我的目录“C:Program Files (x86)Microsoft Visual Studio2017”

2,以管理员身份运行“适用于 VS 2017 的 x64 本机工具命令提示”

3,执行以下命令进行编译:

复制代码
1
2
3
cd /d "C:Program Files (x86)Microsoft Visual Studio2017boost_1_73_0" bootstrap.bat // 执行失败需要查看bootstrap.log,成功后会得到b2.exe, b2.exe

4,使用

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// 工程:属性 =》配置属性 =》C/C++ =》常规 =》附加包含目录 填上:C:Program Files (x86)Microsoft Visual Studio2017boost_1_73_0 // 工程:属性 =》配置属性 =》链接器 =》常规 =》附加库目录 填上:C:Program Files (x86)Microsoft Visual Studio2017boost_1_73_0stagelib #include <iostream> #include <string> #include <boost/filesystem.hpp> using namespace boost::filesystem; int main(int argc, char* argv[]) { std::string file; std::cin >> file; std::cout << file << " : " << file_size(file) << std::endl; return 0; }

Linux安装boost库

1,下载解压

2,进入解压后的目录执行命令

复制代码
1
2
$ sudo ./bootstrap.sh $ sudo ./b2 install // 头文件在/usr/local/include,库文件在/usr/local/lib

3,使用

复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <iostream> #include <boost/filesystem.hpp> using namespace boost::filesystem; int main(int argc, char *argv[]) { if (argc < 2) { std::cout << "用法:app pathn"; return 1; } std::cout << argv[1] << ":" << file_size(argv[1]) << std::endl; return 0; } // 编译命令:g++ TestBoostLib.cpp -o Test -I /usr/local/include -static -L /usr/local/lib -lboost_system -lboost_filesystem

到此这篇关于C++ boost库的安装过程详解的文章就介绍到这了,更多相关C++ boost库的安装内容请搜索靠谱客以前的文章或继续浏览下面的相关文章希望大家以后多多支持靠谱客!

最后

以上就是美丽野狼最近收集整理的关于C++ boost库的安装过程详解的全部内容,更多相关C++内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(107)

评论列表共有 0 条评论

立即
投稿
返回
顶部