We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4718b81 commit 490dfffCopy full SHA for 490dfff
Dockerfile.system-clang
@@ -22,7 +22,10 @@ WORKDIR /build
22
23
ENV TOOLCHAIN_PREFIX=/opt/llvm-mingw
24
25
-ARG TOOLCHAIN_ARCHS="i686 x86_64 armv7 aarch64"
+# build-compiler-rt.sh assumes that sanitizers can be built for all architectures.
26
+# Sanitizers can be built for aarch64 since LLVM 14 and for armv7 since LLVM 19.
27
+# For simplicity, just skip building for armv7 when building an older version.
28
+ARG TOOLCHAIN_ARCHS="i686 x86_64 aarch64"
29
30
ARG DEFAULT_CRT=ucrt
31
0 commit comments