lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix fallout of recent cc-wrapper changes

Fixes tarball except for 56e21d05e874a29ad0d51aea18e8c982c7c826f3

Shea Levy 6e3c9d5c e104a787

+11 -6
+1 -1
pkgs/development/compilers/gcc/3.4/default.nix
··· 37 37 } 38 38 "; 39 39 40 - passthru = { inherit langC langCC langF77; }; 40 + passthru = { inherit langC langCC langF77; isGNU = true; }; 41 41 42 42 meta = { 43 43 homepage = "http://gcc.gnu.org/";
+2
pkgs/development/compilers/gcc/4.3/default.nix
··· 171 171 rm -Rf ghdl-* 172 172 ''; 173 173 174 + passthru.isGNU = true; 175 + 174 176 meta = { 175 177 homepage = "http://ghdl.free.fr/"; 176 178 license = stdenv.lib.licenses.gpl2Plus;
+1 -1
pkgs/development/compilers/gcc/4.4/default.nix
··· 243 243 244 244 245 245 passthru = { inherit langC langCC langAda langFortran langVhdl 246 - enableMultilib version; }; 246 + enableMultilib version; isGNU = true; }; 247 247 248 248 # ghdl does not build fine with parallel building 249 249 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=46173
+1 -1
pkgs/development/compilers/gcc/4.5/default.nix
··· 358 358 else null; 359 359 360 360 passthru = { inherit langC langCC langAda langFortran langVhdl 361 - enableMultilib version; }; 361 + enableMultilib version; isGNU = true; }; 362 362 363 363 enableParallelBuilding = !langAda; 364 364
+1 -1
pkgs/development/compilers/gcc/4.6/default.nix
··· 427 427 else null; 428 428 429 429 passthru = { inherit langC langCC langAda langFortran langVhdl 430 - langGo version; }; 430 + langGo version; isGNU = true; }; 431 431 432 432 enableParallelBuilding = false; 433 433
+1 -1
pkgs/development/compilers/llvm/3.3/clang.nix
··· 29 29 sha256 = "15mrvw43s4frk1j49qr4v5viq68h8qlf10qs6ghd6mrsmgj5vddi"; 30 30 }; 31 31 32 - passthru = { cc = stdenv.cc.cc; }; 32 + passthru = { cc = stdenv.cc.cc; gcc = gccReal; }; 33 33 34 34 meta = { 35 35 homepage = http://clang.llvm.org/;
+3
pkgs/development/compilers/llvm/3.4/clang.nix
··· 35 35 ''; 36 36 37 37 passthru.cc = stdenv.cc.cc; 38 + # GCC_INSTALL_PREFIX points here, so just use it even though it may not 39 + # actually be a gcc 40 + passthru.gcc = stdenv.cc.cc; 38 41 39 42 enableParallelBuilding = true; 40 43
+1 -1
pkgs/development/tools/misc/distcc/default.nix
··· 41 41 # 42 42 # extraConfig is meant to be sh lines exporting environment 43 43 # variables like DISTCC_HOSTS, DISTCC_DIR, ... 44 - links = extraConfig : (runCommand "distcc-links" { } 44 + links = extraConfig: (runCommand "distcc-links" { passthru.gcc = gcc.cc; } 45 45 '' 46 46 mkdir -p $out/bin 47 47 if [ -x "${gcc.cc}/bin/gcc" ]; then