Skip to content

Commit

Permalink
Docker.system-clang: Fix building with older LLVM versions after rece…
Browse files Browse the repository at this point in the history
…nt changes
  • Loading branch information
mstorsjo committed Sep 10, 2024
1 parent 4718b81 commit 490dfff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Dockerfile.system-clang
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ WORKDIR /build

ENV TOOLCHAIN_PREFIX=/opt/llvm-mingw

ARG TOOLCHAIN_ARCHS="i686 x86_64 armv7 aarch64"
# build-compiler-rt.sh assumes that sanitizers can be built for all architectures.
# Sanitizers can be built for aarch64 since LLVM 14 and for armv7 since LLVM 19.
# For simplicity, just skip building for armv7 when building an older version.
ARG TOOLCHAIN_ARCHS="i686 x86_64 aarch64"

ARG DEFAULT_CRT=ucrt

Expand Down

0 comments on commit 490dfff

Please sign in to comment.