Darwin: Use GCC 4.6 in `stdenvNix'.

svn path=/nixpkgs/trunk/; revision=33894
This commit is contained in:
Ludovic Courtès
2012-04-23 15:47:37 +00:00
parent 04600bbec1
commit 29bc53265d
4 changed files with 32 additions and 5 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ import ../generic rec {
import ../../build-support/native-darwin-cctools-wrapper {inherit stdenv;}
else
pkgs.binutils;
gcc = if stdenv.isDarwin then pkgs.gccApple.gcc else pkgs.gcc.gcc;
gcc = pkgs.gcc.gcc;
coreutils = pkgs.coreutils;
shell = pkgs.bash + "/bin/sh";
};