summary refs log tree commit diff
path: root/pkgs/stdenv/nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-24 18:26:23 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-10-24 18:26:23 +0000
commitb342dcb13bae24e81c55327d4c5276c7ed73f8c8 (patch)
tree351527ea3f0cb7e5197ac4a00b79d882f89c3350 /pkgs/stdenv/nix
parent5f4f8766cfd3a46433855716011ba015711eddd6 (diff)
downloadnixpkgs-b342dcb13bae24e81c55327d4c5276c7ed73f8c8.tar
nixpkgs-b342dcb13bae24e81c55327d4c5276c7ed73f8c8.tar.gz
nixpkgs-b342dcb13bae24e81c55327d4c5276c7ed73f8c8.tar.bz2
nixpkgs-b342dcb13bae24e81c55327d4c5276c7ed73f8c8.tar.lz
nixpkgs-b342dcb13bae24e81c55327d4c5276c7ed73f8c8.tar.xz
nixpkgs-b342dcb13bae24e81c55327d4c5276c7ed73f8c8.tar.zst
nixpkgs-b342dcb13bae24e81c55327d4c5276c7ed73f8c8.zip
* gcc-wrapper: separately store the flags necessary to find GCC and
  Glibc.  This is useful when building GCC.
* gcc-wrapper: the dynamic linker has a different name on x86_64 and
  powerpc.
* gcc-wrapper: "glibc" -> "libc", because someday we might support
  different C libraries.
* gcc: don't do a multilib build (e.g., 32-bit support on x86_64),
  don't need it.
* gcc: merge in support for static builds.
* gcc: various simplifications in the compiler/linker flags, hope they
  work.

svn path=/nixpkgs/trunk/; revision=6823
Diffstat (limited to 'pkgs/stdenv/nix')
-rw-r--r--pkgs/stdenv/nix/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/stdenv/nix/default.nix b/pkgs/stdenv/nix/default.nix
index 0c9b0c8027a..227cb876a97 100644
--- a/pkgs/stdenv/nix/default.nix
+++ b/pkgs/stdenv/nix/default.nix
@@ -9,7 +9,7 @@ import ../generic {
 
   gcc = import ../../build-support/gcc-wrapper {
     nativeTools = false;
-    nativeGlibc = true;
+    nativeLibc = true;
     inherit stdenv;
     binutils = 
       if stdenv.isDarwin then