gpt4 book ai didi

ubuntu - 用 1.50 替换默认的旧 boost 1.46

转载 作者:太空宇宙 更新时间:2023-11-03 16:55:06 25 4
gpt4 key购买 nike

我安装了 Ubuntu 11.10 和内核版本 3.0.0-23-generic 和 +/- 默认情况下,我安装了以下版本的 Boost 1.46.1,它安装在 /usr/include/boost 下/usr/lib:

bravegag@Zeus:~/code/roofline/tool$ dpkg --get-selections | grep boost
libboost-date-time1.46.1 install
libboost-dev install
libboost-iostreams1.46.1 install
libboost-program-options1.46.1 install
libboost-serialization1.46.1 install
libboost-thread1.46.1 install
libboost1.46-dev install

我可以尝试通过标准的 Ubuntu 方式更新它,但这很可能意味着我需要获得一些第三方 ppa 并作为副作用拉出很多垃圾,这将使我的系统不稳定,我不希望那样。所以我从源代码安装了 Boost 1.50,它安装在 /usr/local/include/boost/usr/local/lib 下。

我的一个 CMake 项目选择 1.50 版本没问题。但是,我使用的工具使用“默认”系统设置进行编译和链接,最终选择了 1.46.1 版本并导致错误消息 src/utils.h:17:25: error: 'boost: :BOOST_FOREACH' 尚未声明 所以显然没有选择 1.50 版本。

我尝试像这样覆盖默认的 g++/gcc Boost 版本:

export CPLUS_INCLUDE_PATH=/usr/local/include/boost/:$CPLUS_INCLUDE_PATH   
export LIBRARY_PATH=/usr/local/lib/:$LIBRARY_PATH

但这也无济于事……我的问题是,我能否简单地清除所有那些旧的 Boost 1.46 安装并移至默认的 /usr/include/usr/lib 1.50 安装?这样做会导致我的系统崩溃吗?我不想再冒一次重新安装的风险。

最佳答案

I could try updating it by the standard Ubuntu means but this will most likely imply I need to get some third party ppa and pull as side effect lot of crap that will make my system unstable

您可以添加一个 PPA,只安装您想要的包,然后(如果 PPA 包含的不仅仅是 Boost 库)删除它,这样就不会自动更新其他包。我认为这是最简单的方法。

However, a tool I am using that compiles and links using the "default" system settings ends up picking the 1.46.1

它是什么样的工具?也许您可以将其配置为从自定义位置使用 Boost?如果它是基于 gcc 的,让它将 -I 和 -L 标志传递给编译器和链接器可能会有所帮助。

can I not simply sweep out all those old Boost 1.46 installations and move over to the default /usr/include and /usr/lib the 1.50 installation? would doing this cause my system to break?

在大多数 GNU/Linux 发行版(其中包括 Ubuntu)中,/usr 前缀是为由发行版的包管理器管理的软件保留的。在那里安装非打包软件一开始会起作用,但是当某些包实际上包含相同的文件时,您可能会遇到一些麻烦(例如包管理器投诉)。这就是为什么对于手动编译的非打包软件,通常的做法是使用其他前缀,例如 /usr/local/opt/something

大多数共享库都是版本化的,因此在同一系统上同时安装它们的多个版本是安全的。特别是,您可以在 Ubuntu 中拥有多个版本的 Boost 运行时包。如果你仍然想手动安装 Boost 到 /usr,你不必删除旧的 Boost runtime 版本,如果你发现一些重要的软件包依赖它们,这很好.

但是,在将新编译的 Boost 安装到 /usr 之前,首先从您的系统中删除所有 *boost*dev 包(以及依赖于它们的所有其他 *dev 包),因为它们包含头文件(许多 Boost 组件仅包含头文件)、静态库和指向特定运行时库版本的符号链接(symbolic link)。

为了确认它是否有效,我刚刚使用这种方法在我的 Ubuntu 11.04 上编译并安装了 Boost 1.51 到 /usr,没有任何问题。 Aptitude 仍然使用 Boost 1.42:

$ ldd /usr/bin/aptitude | grep boost
libboost_iostreams.so.1.42.0 => /usr/lib/libboost_iostreams.so.1.42.0 (0x00007f536ee77000)

并且新编译的程序使用新版本:

$ g++ my-boost-test.c -lboost_thread -o my-boost-test
$ ldd my-boost-test | grep boost
libboost_thread.so.1.51.0 => /usr/lib/libboost_thread.so.1.51.0 (0x00007f543d1df000)
libboost_chrono.so.1.51.0 => /usr/lib/libboost_chrono.so.1.51.0 (0x00007f543c49e000)
libboost_system.so.1.51.0 => /usr/lib/libboost_system.so.1.51.0 (0x00007f543c29a000)

关于ubuntu - 用 1.50 替换默认的旧 boost 1.46,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12129478/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com