Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/ci/docker/host-aarch64/aarch64-gnu-debug/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ ENV RUSTBUILD_FORCE_CLANG_BASED_TESTS 1
# llvm.use-linker conflicts with downloading CI LLVM
ENV NO_DOWNLOAD_CI_LLVM 1

# FIXME(#147556): Work around a libffi-sys build failure by telling `configure`
# that it can use `mkdir -p`.
ENV MKDIR_P mkdir -p

ENV RUST_CONFIGURE_ARGS \
--build=aarch64-unknown-linux-gnu \
--enable-debug \
Expand Down
4 changes: 4 additions & 0 deletions src/ci/docker/host-aarch64/aarch64-gnu-llvm-20/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ RUN sh /scripts/sccache.sh
ENV NO_DOWNLOAD_CI_LLVM 1
ENV EXTERNAL_LLVM 1

# FIXME(#147556): Work around a libffi-sys build failure by telling `configure`
# that it can use `mkdir -p`.
ENV MKDIR_P mkdir -p

# Using llvm-link-shared due to libffi issues -- see #34486
ENV RUST_CONFIGURE_ARGS \
--build=aarch64-unknown-linux-gnu \
Expand Down
4 changes: 4 additions & 0 deletions src/ci/docker/host-aarch64/aarch64-gnu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
COPY scripts/sccache.sh /scripts/
RUN sh /scripts/sccache.sh

# FIXME(#147556): Work around a libffi-sys build failure by telling `configure`
# that it can use `mkdir -p`.
ENV MKDIR_P mkdir -p

ENV RUST_CONFIGURE_ARGS \
--build=aarch64-unknown-linux-gnu \
--enable-sanitizers \
Expand Down
Loading