美文网首页
Centos 安装boost

Centos 安装boost

作者: YuWenHaiBo | 来源:发表于2017-09-30 14:23 被阅读1374次
tar xvf boost_1_55_0.tar.gz
cd boost_1_55_0
./bootstrap.sh
sudo ./b2 install
  • 编译完boost库之后,手动创建boost库安装路径
$ sudo mkdir /usr/local/boost
$ mkdir /usr/local/boost/include
$ mkdir /usr/local/boost/lib64
$ cp -rf boost /usr/local/boost/include
$ cp -rf stage/lib/* /usr/local/boost/lib64
$ vim /etc/ld.so.conf
 /usr/local/boost/lib64/

执行ldconfig命令

$  ldconfig

相关文章

  • Thrift centos7 安装

    安装centos需要的扩展 安装boost,本地源码安装最安全 笔者在安装boost的时候,使用的yum inst...

  • 阿里云服务器centos8系统安装和使用boost

    阿里云服务器centos8系统安装和使用boost 一.直接用yum安装 二.安装包安装 1、去官网boost[h...

  • Centos 安装boost

    推荐一个linux指令学习网站http://man.linuxde.net/ 首先在sourceforge下载对应...

  • MySQL5.7源码安装

    环境 系统:CentOS 6.6软件:mysql-boost-5.7.21.tar.gz mysql安装 下载源码...

  • CentOS通过源码安装Mysql

    CentOS通过源码安装Mysql 下载mysql源码和boost文件,并上传到服务器中下载地址:http://f...

  • MYSQL5.7.20源码安装

    安装准备 1、适用于CENTOS7(具体适合那些版本我也不知道,大同小异吧)2、安装包名:mysql-boost-...

  • CentOS8.0 切换到aliyun repo dnf mak

    一、问题描述 最近安装centos8.0在使用dnf安装boost的时候遇到一些问题,使用原来操作系统自带的rep...

  • mac boost 安装

    源码编译安装: boost安装官网 下载Boost源码 解压放在任意目录,例如/usr/local/boost_1...

  • pIRS的安装和简单使用

    [TOC] 安装Boost C++ library 安装pIRS过程中遇到未安装Boost C++ library...

  • Mac安装boost

    boost安装 1.boost安装包下载https://sourceforge.net/projects/boos...

网友评论

      本文标题:Centos 安装boost

      本文链接:https://www.haomeiwen.com/subject/zbmgextx.html