Fix build issues caused by Arch/pacman gcc-libs split; bump to v2.11.1

This commit is contained in:
wheaney 2026-08-14 19:09:06 -07:00
parent 886ce0b9dc
commit 5fd3a200ff
4 changed files with 16 additions and 4 deletions

View File

@ -1 +1 @@
2.11.0
2.11.1

View File

@ -8,7 +8,10 @@ ARG TARGETPLATFORM
ENV STEAMOS=3.7
RUN echo "SteamOS 3.7 build - target platform: $TARGETPLATFORM"
RUN pacman -Sy --noconfirm --needed \
# CheckSpace can't stat Docker's read-only /etc/hosts and /etc/resolv.conf bind mounts,
# which aborts the transaction; Arch's own container images disable it for this reason
RUN sed -i 's/^[[:space:]]*CheckSpace/#CheckSpace/' /etc/pacman.conf \
&& pacman -Syu --noconfirm --needed \
ca-certificates \
base-devel \
cmake \
@ -30,6 +33,7 @@ RUN pacman -Sy --noconfirm --needed \
kxmlgui \
kwindowsystem \
kwin \
vulkan-headers \
&& pacman -Scc --noconfirm
WORKDIR /source

View File

@ -8,7 +8,10 @@ ARG TARGETPLATFORM
ENV STEAMOS=3.8
RUN echo "SteamOS 3.8 build - target platform: $TARGETPLATFORM"
RUN pacman -Sy --noconfirm --needed \
# CheckSpace can't stat Docker's read-only /etc/hosts and /etc/resolv.conf bind mounts,
# which aborts the transaction; Arch's own container images disable it for this reason
RUN sed -i 's/^[[:space:]]*CheckSpace/#CheckSpace/' /etc/pacman.conf \
&& pacman -Syu --noconfirm --needed \
ca-certificates \
base-devel \
cmake \
@ -30,6 +33,7 @@ RUN pacman -Sy --noconfirm --needed \
kxmlgui \
kwindowsystem \
kwin \
vulkan-headers \
&& pacman -Scc --noconfirm
WORKDIR /source

View File

@ -8,7 +8,10 @@ ARG TARGETPLATFORM
ENV STEAMOS=3.9
RUN echo "SteamOS 3.9 build - target platform: $TARGETPLATFORM"
RUN pacman -Sy --noconfirm --needed \
# CheckSpace can't stat Docker's read-only /etc/hosts and /etc/resolv.conf bind mounts,
# which aborts the transaction; Arch's own container images disable it for this reason
RUN sed -i 's/^[[:space:]]*CheckSpace/#CheckSpace/' /etc/pacman.conf \
&& pacman -Syu --noconfirm --needed \
ca-certificates \
base-devel \
cmake \
@ -30,6 +33,7 @@ RUN pacman -Sy --noconfirm --needed \
kxmlgui \
kwindowsystem \
kwin \
vulkan-headers \
&& pacman -Scc --noconfirm
WORKDIR /source