[libcxx-commits] [PATCH] D150695: [libc++] Install GCC 13 in the docker containers
Nikolas Klauser via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri May 19 09:19:26 PDT 2023
philnik updated this revision to Diff 523820.
philnik added a comment.
Use PPA instead
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D150695/new/
https://reviews.llvm.org/D150695
Files:
libcxx/utils/ci/Dockerfile
Index: libcxx/utils/ci/Dockerfile
===================================================================
--- libcxx/utils/ci/Dockerfile
+++ libcxx/utils/ci/Dockerfile
@@ -95,7 +95,8 @@
libclang-$(($LLVM_HEAD_VERSION - 2))-dev libclang-$(($LLVM_HEAD_VERSION - 1))-dev libclang-$LLVM_HEAD_VERSION-dev
# Install the most recent GCC, like clang install the previous version as a transition.
-ENV GCC_LATEST_VERSION=12
+ENV GCC_LATEST_VERSION=13
+RUN add-apt-repository ppa:ubuntu-toolchain-r/test
RUN apt-get update && apt install -y gcc-$((GCC_LATEST_VERSION - 1)) g++-$((GCC_LATEST_VERSION - 1))
RUN apt-get update && apt install -y gcc-$GCC_LATEST_VERSION g++-$GCC_LATEST_VERSION
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D150695.523820.patch
Type: text/x-patch
Size: 721 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20230519/05ec1dd7/attachment.bin>
More information about the libcxx-commits
mailing list