* Don't double-wrap gcc.

svn path=/nixpkgs/trunk/; revision=2287
This commit is contained in:
Eelco Dolstra 2005-02-23 13:18:53 +00:00
parent 7322689c3b
commit e52ae5eab0

View file

@ -288,13 +288,7 @@ rec {
profiledCompiler = gccWithProfiling;
};
gccWrapped = (import ../build-support/gcc-wrapper) {
nativeTools = false;
nativeGlibc = false;
gcc = stdenv.gcc;
inherit (stdenv.gcc) binutils glibc;
inherit stdenv;
};
gccWrapped = stdenv.gcc;
gcc_static = (import ../development/compilers/gcc-static-3.4) {
inherit fetchurl stdenv;