阿里云服务器centos8系统安装和使用boost
阿里云服务器centos8系统安装和使用boost
一.直接用yum安装
yum install boost
yum install boost-devel
yum install boost-doc
二.安装包安装
1、去官网boost下载你想要的安装包
2、安装boost依赖包:
yum -y install gcc gcc-c++ python python-devel libicu libicu-devel zlib zlib-devel bzip2 bzip2-devel
3、拷贝到系统
tar -zxvf boost_1_78_0.tar.gz
cd boost_1_78_0
# 默认安装
sudo ./bootstrap.sh
# 也可以指定安装目录,例如
sudo ./bootstrap.sh --prefix=/usr/local/include/boost
# 安装boost
sudo ./b2 install
【阿里云服务器centos8系统安装和使用boost】4、安装boost.build
cd /boost/tools/build
sudo ./bootstrap.sh
sudo ./b2 install --prefix=/usr/local/include/boost
ldconfig
三、验证
1、程序thread.cpp
#include
#include void wait(int seconds)
{
boost::this_thread::sleep(boost::posix_time::seconds(seconds));
} boost::mutex mutex;
void thread()
{
for (int i = 0;
i < 5;
++i)
{
wait(1);
mutex.lock();
std::cout << "Thread " << boost::this_thread::get_id() << ": " << i << std::endl;
mutex.unlock();
}
} int main()
{
boost::thread t1(thread);
boost::thread t2(thread);
t1.join();
t2.join();
}
2、编译执行
[root@hackett boost]# g++ thread.cpp -o thread -lboost_thread
[root@hackett boost]# ./thread
Thread 7f520774c700: 0
Thread 7f5206f4b700: 0
Thread 7f5206f4b700: 1
Thread 7f520774c700: 1
Thread 7f5206f4b700: 2
Thread 7f520774c700: 2
Thread 7f520774c700: 3
Thread 7f5206f4b700: 3
Thread 7f5206f4b700: 4
Thread 7f520774c700: 4
推荐阅读
- 编码学习笔记|阿里巴巴Java开发手册阅读笔记
- 云服务器快速配置阿里巴巴NTP(网络时间协议)
- 云服务器修改dns服务器为阿里云公共dns服务器
- Centos7配置阿里云DNS
- Firefox配置阿里云DNS
- 服务器|token的作用
- 资源分享|泰森云2022年2月资源分享列表 7/20
- Linux服务器配置ulimit的常用参数介绍
- 服务器|阿里云服务器搭建个人网站
- Pulsar|Pulsar 职位广场 | 腾讯、华为云、虾皮、众安保险、StreamNative 等多个热招岗位