summary refs log tree commit diff
path: root/pkgs/test
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-06-14 10:22:33 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-06-14 19:22:15 -0400
commit6e7e22da70850e18d7949b95b215c011b9afda70 (patch)
treea3f196df67a891974613a40c4f064fd09e0fc2fb /pkgs/test
parentfc9644d4c9c9d29958e9bcf1676d48d4b3026bb4 (diff)
downloadnixpkgs-6e7e22da70850e18d7949b95b215c011b9afda70.tar
nixpkgs-6e7e22da70850e18d7949b95b215c011b9afda70.tar.gz
nixpkgs-6e7e22da70850e18d7949b95b215c011b9afda70.tar.bz2
nixpkgs-6e7e22da70850e18d7949b95b215c011b9afda70.tar.lz
nixpkgs-6e7e22da70850e18d7949b95b215c011b9afda70.tar.xz
nixpkgs-6e7e22da70850e18d7949b95b215c011b9afda70.tar.zst
nixpkgs-6e7e22da70850e18d7949b95b215c011b9afda70.zip
llvm 5: split out compiler-rt and remove libcxxabi dep
We already did them on non-mass-rebuild llvm 6. Also, this allows
simplifying the stdenv booting.

We were missing the libcxxabi dep in compile-rt in llvm 6, so fixed that
too.
Diffstat (limited to 'pkgs/test')
-rw-r--r--pkgs/test/cc-wrapper/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/test/cc-wrapper/default.nix b/pkgs/test/cc-wrapper/default.nix
index dd41cd157ca..6d30157fe84 100644
--- a/pkgs/test/cc-wrapper/default.nix
+++ b/pkgs/test/cc-wrapper/default.nix
@@ -3,7 +3,7 @@ with stdenv.lib;
 let
   # Sanitizers are not supported on Darwin.
   # Sanitizer headers aren't available in older libc++ stdenvs due to a bug
-  sanitizersBroken = stdenv.cc.isClang && versionOlder (getVersion stdenv.cc.name) "6.0.0";
+  sanitizersBroken = stdenv.cc.isClang && versionOlder (getVersion stdenv.cc.name) "5.0.0";
 in stdenv.mkDerivation {
   name = "cc-wrapper-test";