Skip to content

Commit 907afa9

Browse files
committed
Upgrade glibc builder containers to gcc-toolset-15
1 parent ffcd60c commit 907afa9

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

Containerfile.glibc-aarch64

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ FROM rockylinux:8
44
RUN dnf install -y epel-release dnf-plugins-core && \
55
dnf config-manager --set-enabled powertools && \
66
dnf install -y \
7-
gcc-toolset-13-gcc \
8-
gcc-toolset-13-gcc-c++ \
9-
gcc-toolset-13-binutils \
7+
gcc-toolset-15-gcc \
8+
gcc-toolset-15-gcc-c++ \
9+
gcc-toolset-15-binutils \
1010
make \
1111
pkgconf-pkg-config \
1212
curl \
@@ -26,10 +26,10 @@ RUN dnf install -y epel-release dnf-plugins-core && \
2626
libX11-devel && \
2727
dnf clean all
2828

29-
# Environment setup for GCC Toolset 13 and Rust
29+
# Environment setup for GCC Toolset 15 and Rust
3030
ENV RUSTUP_HOME=/usr/local/rustup \
3131
CARGO_HOME=/usr/local/cargo \
32-
PATH=/usr/local/cargo/bin:/opt/rh/gcc-toolset-13/root/usr/bin:$PATH
32+
PATH=/usr/local/cargo/bin:/opt/rh/gcc-toolset-15/root/usr/bin:$PATH
3333

3434
# Install Rust stable toolchain
3535
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable && \

Containerfile.glibc-x86_64

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ FROM rockylinux:8
44
RUN dnf install -y epel-release dnf-plugins-core && \
55
dnf config-manager --set-enabled powertools && \
66
dnf install -y \
7-
gcc-toolset-13-gcc \
8-
gcc-toolset-13-gcc-c++ \
9-
gcc-toolset-13-binutils \
7+
gcc-toolset-15-gcc \
8+
gcc-toolset-15-gcc-c++ \
9+
gcc-toolset-15-binutils \
1010
make \
1111
pkgconf-pkg-config \
1212
curl \
@@ -26,10 +26,10 @@ RUN dnf install -y epel-release dnf-plugins-core && \
2626
libX11-devel && \
2727
dnf clean all
2828

29-
# Environment setup for GCC Toolset 13 and Rust
29+
# Environment setup for GCC Toolset 15 and Rust
3030
ENV RUSTUP_HOME=/usr/local/rustup \
3131
CARGO_HOME=/usr/local/cargo \
32-
PATH=/usr/local/cargo/bin:/opt/rh/gcc-toolset-13/root/usr/bin:$PATH
32+
PATH=/usr/local/cargo/bin:/opt/rh/gcc-toolset-15/root/usr/bin:$PATH
3333

3434
# Install Rust stable toolchain
3535
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable && \

0 commit comments

Comments
 (0)