Centos
如何在 docker 的 centos7 中使 devtoolset g++ 可用於 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 build 階段輸出:
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++?
根據評論和我自己使用 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
命令設置了目前環境。