We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dd3f74 commit 3a7840aCopy full SHA for 3a7840a
1 file changed
.cross/Dockerfile
@@ -3,16 +3,13 @@ ARG DEBIAN_FRONTEND=noninteractive
3
4
FROM $CROSS_BASE_IMAGE
5
6
-ARG CROSS_BASE_IMAGE
7
-
8
COPY .github/sccache.sh /
9
10
RUN apt-get update && \
11
apt-get install -y --no-install-recommends clang llvm && \
12
rm -rf /var/lib/apt/lists/* && \
13
- target="${CROSS_BASE_IMAGE##*/}" && \
14
chmod +x /sccache.sh && \
15
- /sccache.sh "${target%%:*}"
+ /sccache.sh "x86_64-unknown-linux-musl"
16
17
ENV CC=clang \
18
CXX=clang++ \
0 commit comments