ubuntu boost运行./bootstrap.sh后可能会出现如下提示
Building B2 engine…
A C++11 capable compiler is required for building the B2 engine. Toolset ‘cxx’ does not appear to support C++11.
Note, the C++11 capable compiler is only required for building the B2 engine. The B2 build system allows for using any C++ level and any other supported language and resource in your projects.
You can specify the toolset as the argument, i.e.: ./build.sh gcc
Toolsets supported by this script are: acc, clang, como, gcc, intel-darwin, intel-linux, kcc, kylix, mipspro, pathscale, pgi, qcc, sun, sunpro, tru64cxx, vacpp
For any toolset you can override the path to the compiler with the CXX environment variable. You can also use additional flags for the compiler with the CXXFLAGS environment variable.
A special toolset; cxx, is available which is used as a fallback when a more
最近更新
- 深拷贝和浅拷贝的区别(重点)
- 【Vue】走进Vue框架世界
- 【云服务器】项目部署—搭建网站—vue电商后台管理系统
- 【React介绍】 一文带你深入React
- 【React】React组件实例的三大属性之state,props,refs(你学废了吗)
- 【脚手架VueCLI】从零开始,创建一个VUE项目
- 【React】深入理解React组件生命周期----图文详解(含代码)
- 【React】DOM的Diffing算法是什么?以及DOM中key的作用----经典面试题
- 【React】1_使用React脚手架创建项目步骤--------详解(含项目结构说明)
- 【React】2_如何使用react脚手架写一个简单的页面?