forked from NixOS/nixpkgs
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
llvm and clang 6: factor out compiler-rt, fix libstdcxxStdenv sanitiz…
…er headers Build compiler-rt separate from llvm and clang, and just add as an extra library in the wrapper.
- Loading branch information
1 parent
e5175fb
commit 16da44b
Showing
4 changed files
with
53 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ stdenv, version, fetch, cmake, python, llvm }: | ||
with stdenv.lib; | ||
stdenv.mkDerivation rec { | ||
name = "compiler-rt-${version}"; | ||
inherit version; | ||
src = fetch "compiler-rt" "16m7rvh3w6vq10iwkjrr1nn293djld3xm62l5zasisaprx117k6h"; | ||
|
||
nativeBuildInputs = [ cmake python llvm ]; | ||
|
||
configureFlags = [ | ||
"-DCOMPILER_RT_DEFAULT_TARGET_ONLY=ON" | ||
]; | ||
|
||
outputs = [ "dev" "out" ]; | ||
|
||
patches = [ | ||
./compiler-rt-codesign.patch # Revert compiler-rt commit that makes codesign mandatory | ||
] ++ optional stdenv.hostPlatform.isMusl ./sanitizers-nongnu.patch; | ||
|
||
# TSAN requires XPC on Darwin, which we have no public/free source files for. We can depend on the Apple frameworks | ||
# to get it, but they're unfree. Since LLVM is rather central to the stdenv, we patch out TSAN support so that Hydra | ||
# can build this. If we didn't do it, basically the entire nixpkgs on Darwin would have an unfree dependency and we'd | ||
# get no binary cache for the entire platform. If you really find yourself wanting the TSAN, make this controllable by | ||
# a flag and turn the flag off during the stdenv build. | ||
postPatch = stdenv.lib.optionalString stdenv.isDarwin '' | ||
substituteInPlace cmake/config-ix.cmake \ | ||
--replace 'set(COMPILER_RT_HAS_TSAN TRUE)' 'set(COMPILER_RT_HAS_TSAN FALSE)' | ||
''; | ||
|
||
enableParallelBuilding = true; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters