Fix fallout of recent cc-wrapper changes

Fixes tarball except for 56e21d05e8
This commit is contained in:
Shea Levy
2015-03-24 22:13:43 -04:00
parent e104a7870f
commit 6e3c9d5ce4
8 changed files with 11 additions and 6 deletions
@@ -29,7 +29,7 @@ stdenv.mkDerivation {
sha256 = "15mrvw43s4frk1j49qr4v5viq68h8qlf10qs6ghd6mrsmgj5vddi";
};
passthru = { cc = stdenv.cc.cc; };
passthru = { cc = stdenv.cc.cc; gcc = gccReal; };
meta = {
homepage = http://clang.llvm.org/;
@@ -35,6 +35,9 @@ stdenv.mkDerivation {
'';
passthru.cc = stdenv.cc.cc;
# GCC_INSTALL_PREFIX points here, so just use it even though it may not
# actually be a gcc
passthru.gcc = stdenv.cc.cc;
enableParallelBuilding = true;