c++ - 修改构建boost的默认编译器路径

标签 c++ linux boost

我有一个旧版本的 boost 1.33.1。我想使用自定义 gcc 二进制文件来构建它,该二进制文件位于默认路径以外的路径中。我在网络上找不到该页面,因此我粘贴了 gcc-tools.jam 表单 tools/build/v1/gcc-tools.jam 的第一部分。

版权所有 (c) 2001 David Abrahams。

  # Copyright (c) 2002-2005 Rene Rivera.
  # Distributed under the Boost Software License, Version 1.0.
  # (See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)

  # The following #// line will be used by the regression test table generation
  # program as the column heading for HTML tables. Must not include version number.
  #//<a href="http://gcc.gnu.org/">GNU<br>GCC</a>

  # compute directories for invoking GCC
  #
  # The gcc toolset can be user-configured using the following
  # variables:
  #
  # GCC_ROOT_DIRECTORY
  #       The directory in which GCC was installed. Defaults to
  #       unset. Usually, there is no need to set this variable at
  #       all. However, if G++ is not in the path it is usually
  #       sufficient to configure this one variable. More fine-grained
  #       configuration is available by setting the following:
  #
  # GCC_BIN_DIRECTORY
  #       the directory prefix used to find the gcc executables. Defaults to
  #       $(GCC_ROOT_DIRECTORY)/bin/, or "" if GCC_ROOT_DIRECTORY is
  #       not set.
  #
  # GCC_INCLUDE_DIRECTORY
  #       the directory in which to find system includes. Defaults to
  #       empty.
  #
  # GCC_STDLIB_DIRECTORY
  #       the directory in which to find the standard library
  #       objects associated with this build of gcc. Defaults to
  #       $(GCC_ROOT_DIRECTORY)/lib.
  #
  # GXX
  #       The name by which g++ is invoked. You can also use this in
  #       lieu of setting the <cxxflags> property to force options such
  #       as "-V3.0.4" into the g++ command line: "-sGXX=g++ -V3.0.4".
  #
  # GCC
  #       Similar to GXX, the name by which gcc is invoked for "C"
  #       language targets.

  # singleton variables...
  set-as-singleton GCC_ROOT_DIRECTORY GCC_BIN_DIRECTORY GCC_INCLUDE_DIRECTORY GCC_STDLIB_DIRECTORY ;

  flags gcc GCC_BIN_DIRECTORY : $(GCC_BIN_DIRECTORY) ;
  flags gcc GCC_INCLUDE_DIRECTORY : $(GCC_INCLUDE_DIRECTORY) ;
  flags gcc GCC_STDLIB_DIRECTORY : $(GCC_STDLIB_DIRECTORY) ;

  GCC_BIN_DIRECTORY ?= $(GCC_ROOT_DIRECTORY)$(SLASH)bin ;
  GCC_BIN_DIRECTORY ?= "" ; # Don't clobber tool names if GCC_ROOT_DIRECTORY not set
  GCC_STDLIB_DIRECTORY ?= $(GCC_ROOT_DIRECTORY)$(SLASH)lib ;

  # Make sure this gets set "on" the target
  flags gcc GCC_BIN_DIR : $(GCC_BIN_DIRECTORY) ;

  flags gcc LINKFLAGS <runtime-link>static : -static ;
  flags gcc CFLAGS <debug-symbols>on : -g ;
  flags gcc LINKFLAGS <debug-symbols>on : -g ;
  flags gcc CFLAGS <optimization>off : -O0 ;
  flags gcc CFLAGS <optimization>speed : -O3 ;

在这一部分中,我可以使用注释部分中定义的变量将默认的 gcc/g++ 修改为我自己的。但我不知道该怎么做。例如我写

 GCC_BIN_DIRECTORY=/opt/gcc-4.1.2/installed

但这给了我这个错误:

 rule GCC_ROOT_DIRECTORY=/opt/gcc-4.1.2/installed unknown in module

那么我该怎么做呢?

最佳答案

有脚本bjam,或b2,看这里:http://www.boost.org/boost-build2/doc/html/bbv2/reference/tools.html#bbv2.reference.tools.compiler.gcc

并尝试:

./b2 root /usr/local/mygcc

应该使用提供的编译器

关于c++ - 修改构建boost的默认编译器路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14812676/

相关文章:

c++ - 输入的机器学习数据结构最佳实践

c++ - GNU argp "too few arguments"

c++ - 段错误原因未知Opencv

linux(CLI)通过共享保管箱(文件夹`)链接下载文件而无需帐户

c++ - Boost力定向布局问题

c++ - 有没有办法打印 boost 程序选项的配置文件

c++ - 如何使用移位寄存器操作数移位数组的元素?

c++ - 为什么在比较中将常量放在变量之前?

c++ - 为什么基类的大小显示为 16 字节?

c++ - 继承一个 std::container 包括它的 boost 序列化