Skip to content

Commit

Permalink
Update CentOS 7 compilers to gcc 9
Browse files Browse the repository at this point in the history
ACE requires C++14
  • Loading branch information
bear101 committed Aug 13, 2023
1 parent 7a4c970 commit dade7ed
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Build/Docker/Dockerfile_centos7
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ RUN yum -y update
RUN yum install -y \
cmake3 \
doxygen \
gcc-c++ \
git \
libtool \
make \
ninja-build \
openssl-devel
openssl-devel \
scl-utils
RUN ln -s /bin/cmake3 /bin/cmake
RUN yum install -y centos-release-scl
RUN yum install -y devtoolset-9-gcc devtoolset-9-gcc-c++
RUN scl enable devtoolset-9 -- bash
RUN echo "source /opt/rh/devtoolset-9/enable" > /etc/profile.d/gcc9.sh

0 comments on commit dade7ed

Please sign in to comment.