boost库安装(更新版)

介绍网址:

http://www.linuxfromscratch.org/blfs/view/cvs/general/boost.html

Introduction to Boost

Boost提供了很多基于C++写的库,它包含了 linear algebra, pseudorandom number generation, multithreading, image processing, regular expressions and unit testing等库。

Boost provides a set of free peer-reviewed portable C++ source libraries. It includes libraries for linear algebra, pseudorandom number generation, multithreading, image processing, regular expressions and unit testing.

This package is known to build and work properly using an LFS-8.0 platform.

Package Information

  • Download (HTTP): https://sourceforge.net/projects/boost/files/boost/1.66.0/boost_1_66_0.tar.bz2

  • bzip2 -d boost_1_66_0.tar.bz2
  • tar -xvf boost_1_66_0.tar

Boost Dependencies

Recommended
Optional

ICU-58.2Python-2.7.13 or Python-3.6.0, and Open MPI

User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/boost

Installation of Boost(安装介绍)

First, fix a bug with the header files path, when Python3 is used(我是python2.7,此步骤可以省略):

sed -e '/using python/ s@;@: /usr/include/python${PYTHON_VERSION/3*/${PYTHON_VERSION}m} ;@' \
    -i bootstrap.sh

Install Boost by running the following commands:

$ ./bootstrap.sh --prefix=/share/workplace/home/UIUC_fangjingping/software/boost_1_66_0 && ./b2 stage threading=multi link=shared

To run the Boost.Build's regression test (Python-2.7.13 is required),

   $ issue pushd tools/build/test;

   $ python test_all.py;

   popd.

All 131 tests should pass.

To run every library's regression tests,

   $ issue pushd status;

   $ ../b2;

   $ popd

. A few tests may fail. They take very long (over 120 SBU at -j1, 50 SBU at -j4) and use a very large amount of disk space (up to 40 GB). You can use the -jNswitch to speed them up.

Now, as the root user:

./b2 install threading=multi link=shared

装到自己的home下:

$ ./b2 --prefix=/share/workplace/home/UIUC_fangjingping/software/boost_1_66_0 install

测试能否运行,编一个简单的boost程序,并保存为time.cpp:


代码如下:

#include <boost/date_time/gregorian/gregorian.hpp>
#include <iostream> 
int main() 
{ 
    boost::gregorian::date d(boost::gregorian::day_clock::local_day());
    std::cout << d.year() << d.month() <<d.day() << std::endl; 
}

运行:
$ g++ -I ./include -L ./lib time.cpp -o time
$ ./time

    2018Jan9













Command Explanations

threading=multi:这个参数保证boost安装基于多线程支持。This parameter ensures that Boost is built with multithreading support.

link=shared: 这个参数保证只安装shared库,忽略静态库的安装,因为大部分的软件都不需要静态库,若需要静态库,则不需要加这个参数。This parameter ensures that only shared libraries are created, except for libboost_exception and libboost_test_exec_monitor which are created as static. Most people will not need the static libraries. Indeed most programs using Boost only use the headers. Omit this parameter if you do need static libraries.

-jN:

设置多线程加速安装过程。这个安装和测试过程需要很久,当设置为-j1时120SBU,-j4时50SBU,需要40GB的空间。This switch may be added to the b2 command lines, to run up to N processes in parallel.

--with-python=python3: Add this switch to the bootstrap command, if you want Boost to use Python3 instead of Python2.

 

Contents

Installed Programs: None
Installed Libraries: libboost_atomic.so, libboost_chrono.a, libboost_chrono.so, libboost_container.so, libboost_context.so, libboost_coroutine.so, libboost_date_time.so, libboost_exception.a, libboost-fiber.so, libboost_filesystem.so, libboost_graph.so, libboost_iostreams.so, libboost_locale.so, libboost_log_setup.so, libboost_log.so, libboost_math_c99.so, libboost_math_c99f.so, libboost_math_c99l.so, libboost_math_tr1.so, libboost_math_tr1f.so, libboost_math_tr1l.so, libboost_prg_exec_monitor.so, libboost_program_options.so, libboost_python.so, libboost_python3.so, libboost_random.so, libboost_regex.so, libboost_serialization.so, libboost_signals.so, libboost_system.a, libboost_system.so, libboost_test_exec_monitor.a, libboost_thread.so, libboost_timer.a, libboost_timer.so, libboost_type_erasure.so, libboost_unit_test_framework.so, libboost_wave.so, and libboost_wserialization.so
Installed Directory: /usr/include/boost

Last updated on 2017-02-14 18:20:11 -0600

 
 

转载于:https://www.cnblogs.com/Datapotumas/p/8253653.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在Ubuntu中更新Boost,可以通过命令行安装最新的稳定版本。以下是具体的步骤: 1. **查看当前版本**:在开始之前,了解系统上已安装Boost版本。可以使用`dpkg -S /usr/include/boost/version.hpp`来查看。如果这个命令没有返回结果,可以尝试使用`sudo find /usr -name "libboost"`来查找已安装的版本。 2. **命令行安装**:要安装最新版本的Boost,可以执行`sudo apt-get install libboost-all-dev`。这将安装所有可用的Boost版本。如果需要安装特定版本的Boost,可以先使用`aptitude search boost`来查找可安装的版本,然后指定版本号进行安装,例如`sudo apt-get install libboost1.65-dev`来安装Boost 1.65版本。 3. **局部安装**:如果只需要Boost的个别模块,可以选择性地单独安装它们。具体可以参考相关教程或文档来了解如何单独安装Boost的模块。 4. **手动安装**:如果需要安装特定版本的Boost,或者系统提供的包不满足需求,可以从官方网站下载Boost源代码,自行编译和安装。这通常涉及到下载源代码包、解压、运行配置脚本以及编译安装的过程。 5. **更新系统**:在进行安装之前,建议先更新系统的软件包列表,以确保获取到最新的可用版本。可以使用`sudo apt-get update`来进行系统更新。 6. **删除旧版本**:如果需要删除旧版本的Boost,可以使用`sudo apt-get autoremove libboostX.Y-dev`,其中`X.Y`是你要删除的Boost版本号。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值