CentOS7をインストールした地下のイメージから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(Red Hat 7.3.1-5)
ただし、makeを使用してコードをビルドすると、古いバージョンが使用されるため、ビルドフラグ-std=c++14
認識できません。これを確認するには、バージョンターゲットをMakefileに追加し、次のようにDockerfileでコマンドを実行します。
Makefile:
# ...
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
では、CentOSのデフォルトのg ++ではなく、Makefileでg ++-7をアクティブ化するにはどうすればよいですか?
コメントとDockerでの私自身の経験によると、各RUN
行は個別のシェル環境で実行されているため、1つのRUN
行で環境をソースすると、その環境は他の環境では使用できませんRUN
コマンド。
行を使用するRUN source scl_source enable devtoolset-7 && cd /home/admin/${APP_NAME}/nginx-base/cplusplus && make version && make
前のRUN
コマンドの代わりに、現在の環境がmake
コマンド用にセットアップされていることを確認します。