如何使devtoolset g++可用于docker的centos7中的Makefile?

如何使devtoolset g++可用于docker的centos7中的Makefile?

我正在从安装了 CentOS 7 的地下室映像构建一个 docker 映像。

需要编译的代码需要C++14/17标准中的一些功能,因此我必须将默认的gcc/g++版本从4.8.5更新到更高版本。

我读过一些帖子和文章,执行以下命令来更新 Dockerfile 中的 g++

RUN yum -y install centos-release-scl && \
yum -y install devtoolset-7-gcc* && \
source scl_source enable devtoolset-7 &&
g++ -version

它确实打印了正确的版本。

g++ (GCC) 7.3.1 20180303(红帽 7.3.1-5)

但是,当我通过 make 构建代码时,它仍然使用旧版本,因此-std=c++14无法识别构建标志,为了验证这一点,我将版本目标附加到 Makefile 并在 Dockerfile 中运行命令,如下所示。

生成文件:

# ...
CXX:=g++
FLAGS:=-Wall -fPIC -std=c++14
# ...
%.o: %.cpp
    $(CXX) $(FLAGS) -c $< -o $@ $(INCLUDE_PATH)
# ...
version:
    g++ -v

Dockerfile:

RUN cd /home/admin/${APP_NAME}/nginx-base/cplusplus && make version && make

在 docker 构建阶段的输出:

Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.5/lto-wrapper
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.5-20150702/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
Thread model: posix
gcc version 4.8.5 20150623 (Red Hat 4.8.5-28) (GCC) 
g++ -Wall -fPIC -std=c++14 -c image_engine.cpp -o image_engine.o -I /opt/taobao/tengine/data/include
g++: error: unrecognized command line option '-std=c++14'
make: *** [image_engine.o] Error 1
The command '/bin/sh -c cd /home/admin/${APP_NAME}/nginx-base/cplusplus && make version && make' returned a non-zero code: 2

那么我应该如何在我的 Makefile 中激活 g++-7,而不是 CentOS 的默认 g++?

答案1

根据评论和我自己使用 Docker 的经验,每一RUN行都在单独的 shell 环境中运行,因此当您在一行中获取环境时RUN,该环境不可用于其他RUN命令。

使用该行RUN source scl_source enable devtoolset-7 && cd /home/admin/${APP_NAME}/nginx-base/cplusplus && make version && make而不是之前的RUN命令可确保为该命令设置当前环境make

答案2

作为解决方法:

SHELL ["sh", "-c", "source scl_source enable $(scl -l) && sh -c \"$0\" \"$@\""]

它替换了所有后续 RUN 的 shell。

相关内容