We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 764af14 commit fa7807bCopy full SHA for fa7807b
src/ci/docker/host-x86_64/dist-aarch64-linux/Dockerfile
@@ -21,6 +21,10 @@ RUN sh /scripts/cross-apt-packages.sh
21
COPY scripts/make3.sh /scripts/
22
RUN sh /scripts/make3.sh
23
24
+# We need an aarch64 build of zlib for parity with x86_64.
25
+# See https://github.com/rust-lang/rust/pull/95545.
26
+RUN dpkg --add-architecture arm64 && apt-get update && apt-get install zlib1g-dev:arm64
27
+
28
COPY scripts/crosstool-ng.sh /scripts/
29
RUN sh /scripts/crosstool-ng.sh
30
0 commit comments