Skip to content

Commit

Permalink
Update the gcc version to 7 for knn lib on arm64 (#3735)
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Zhu <[email protected]>
  • Loading branch information
peterzhuamazon committed Jul 13, 2023
1 parent 11ac944 commit 9a5cbce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions docker/ci/config/scl_setup_devtoolset7
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
. scl_source enable devtoolset-7
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ RUN pip3 install cmake==3.23.3
# Upgrade gcc8
# The setup part is partially based on Austin Dewey's article:
# https://austindewey.com/2019/03/26/enabling-software-collections-binaries-on-a-docker-image/
RUN yum install -y centos-release-scl && yum install -y devtoolset-8 && yum clean all && \
echo "source scl_source enable devtoolset-8" > /etc/profile.d/scl_devtoolset8.sh
COPY --chown=0:0 config/scl_setup /usr/local/bin/scl_setup
RUN yum install -y centos-release-scl && yum install -y devtoolset-7 && yum clean all && \
echo "source scl_source enable devtoolset-7" > /etc/profile.d/scl_devtoolset8.sh
COPY --chown=0:0 config/scl_setup_devtoolset7 /usr/local/bin/scl_setup
ENV BASH_ENV="/usr/local/bin/scl_setup"
ENV ENV="/usr/local/bin/scl_setup"
ENV PROMPT_COMMAND=". /usr/local/bin/scl_setup"
Expand Down

0 comments on commit 9a5cbce

Please sign in to comment.