Skip to content

Commit

Permalink
Update kagome dev to gcc-13
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilsa committed Oct 10, 2024
1 parent 0962ae0 commit b80042e
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions housekeeping/docker/kagome-dev/kagome_builder_deb.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,6 @@ RUN install_packages \
llvm-${LLVM_VERSION}-dev \
curl \
dpkg-dev \
g++-12 \
gcc-12 \
gdb \
gdbserver \
git \
Expand Down Expand Up @@ -79,8 +77,8 @@ ENV HUNTER_PYTHON_LOCATION=/venv/bin/python3
ENV LLVM_ROOT=/usr/lib/llvm-${LLVM_VERSION}
ENV LLVM_DIR=/usr/lib/llvm-${LLVM_VERSION}/lib/cmake/llvm/
ENV PATH=${LLVM_ROOT}/bin:${LLVM_ROOT}/share/clang:${PATH}
ENV CC=gcc-12
ENV CXX=g++-12
ENV CC=gcc-13
ENV CXX=g++-13

RUN update-alternatives --install /usr/bin/python python /venv/bin/python3 90 && \
update-alternatives --install /usr/bin/python python /usr/bin/python3 80 && \
Expand All @@ -90,6 +88,6 @@ RUN update-alternatives --install /usr/bin/python python /venv/bin/p
update-alternatives --install /usr/bin/clang clang /usr/lib/llvm-${LLVM_VERSION}/bin/clang-${LLVM_VERSION} 50 && \
update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-${LLVM_VERSION} 50 && \
\
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 90 && \
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 90 && \
update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-12 90
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 90 && \
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 90 && \
update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-13 90

0 comments on commit b80042e

Please sign in to comment.