Skip to content

Commit c96a05a

Browse files
committed
llvmPackages_15.compiler-rt: fix missing builtins
Darwin-specific builtins were present on x86-64-darwin, but not on aarch64-darwin. This is the same issue as #186575, but while the fixes were correctly applied to LLVM 15, we were still disabling the build of builtins on aarch64-darwin. Likely just a confusion.
1 parent 3496678 commit c96a05a

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

  • pkgs/development/compilers/llvm/15/compiler-rt

pkgs/development/compilers/llvm/15/compiler-rt/default.nix

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,6 @@ stdenv.mkDerivation {
9797
substituteInPlace cmake/builtin-config-ix.cmake \
9898
--replace 'set(X86 i386)' 'set(X86 i386 i486 i586 i686)'
9999
'' + lib.optionalString stdenv.isDarwin ''
100-
substituteInPlace cmake/builtin-config-ix.cmake \
101-
--replace 'set(ARM64 arm64 arm64e)' 'set(ARM64)'
102100
substituteInPlace cmake/config-ix.cmake \
103101
--replace 'set(COMPILER_RT_HAS_TSAN TRUE)' 'set(COMPILER_RT_HAS_TSAN FALSE)'
104102
'' + lib.optionalString (useLLVM) ''

0 commit comments

Comments
 (0)