summary refs log tree commit diff
path: root/pkgs/system/all-packages-generic.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2005-02-23 13:18:53 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2005-02-23 13:18:53 +0000
commite52ae5eab0ca7c329479500bdaba43e0f11e52b5 (patch)
tree09877264ca7a1f83bcbde3fc778e28449652ecd7 /pkgs/system/all-packages-generic.nix
parent7322689c3bbf79bbb0323eb7395c5190d880b020 (diff)
downloadnixpkgs-e52ae5eab0ca7c329479500bdaba43e0f11e52b5.tar
nixpkgs-e52ae5eab0ca7c329479500bdaba43e0f11e52b5.tar.gz
nixpkgs-e52ae5eab0ca7c329479500bdaba43e0f11e52b5.tar.bz2
nixpkgs-e52ae5eab0ca7c329479500bdaba43e0f11e52b5.tar.lz
nixpkgs-e52ae5eab0ca7c329479500bdaba43e0f11e52b5.tar.xz
nixpkgs-e52ae5eab0ca7c329479500bdaba43e0f11e52b5.tar.zst
nixpkgs-e52ae5eab0ca7c329479500bdaba43e0f11e52b5.zip
* Don't double-wrap gcc.
svn path=/nixpkgs/trunk/; revision=2287
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index 1ccbe549a55..b03dae1ae49 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -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;