From e52ae5eab0ca7c329479500bdaba43e0f11e52b5 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Wed, 23 Feb 2005 13:18:53 +0000 Subject: [PATCH] * Don't double-wrap gcc. svn path=/nixpkgs/trunk/; revision=2287 --- pkgs/system/all-packages-generic.nix | 8 +------- 1 file changed, 1 insertion(+), 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;