summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc-2.11
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-23 17:06:57 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-11-23 17:06:57 +0000
commitc6b526495bc37e63b43c3fc17705cefac81fa904 (patch)
treebfec07d0e3795c4e9df87db9663272b8abd9d981 /pkgs/development/libraries/glibc-2.11
parent75b60caea072f258a3f014a1ea4fc8308692baca (diff)
downloadnixpkgs-c6b526495bc37e63b43c3fc17705cefac81fa904.tar
nixpkgs-c6b526495bc37e63b43c3fc17705cefac81fa904.tar.gz
nixpkgs-c6b526495bc37e63b43c3fc17705cefac81fa904.tar.bz2
nixpkgs-c6b526495bc37e63b43c3fc17705cefac81fa904.tar.lz
nixpkgs-c6b526495bc37e63b43c3fc17705cefac81fa904.tar.xz
nixpkgs-c6b526495bc37e63b43c3fc17705cefac81fa904.tar.zst
nixpkgs-c6b526495bc37e63b43c3fc17705cefac81fa904.zip
Improving the crossStripping. A cross-glibc gets broken if stripped by the
native strip. So we now distinguish dontStrip and dontCrossStrip. I updated
the expressions for glibc-2.9 and glibc-2.11 accordingly.
I could get rid of the cross-glibc depending on the cross-gcc-stage-static.

Enabling nls in the final cross-gcc.

I still have problems on wint_t/wchar_t not working on cross build. Gettext
does not build.


svn path=/nixpkgs/branches/stdenv-updates/; revision=18562
Diffstat (limited to 'pkgs/development/libraries/glibc-2.11')
-rw-r--r--pkgs/development/libraries/glibc-2.11/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/development/libraries/glibc-2.11/default.nix b/pkgs/development/libraries/glibc-2.11/default.nix
index befcd86b8ba..48f1a12c058 100644
--- a/pkgs/development/libraries/glibc-2.11/default.nix
+++ b/pkgs/development/libraries/glibc-2.11/default.nix
@@ -44,6 +44,8 @@ EOF
         export CC="$crossConfig-gcc"
         export AR="$crossConfig-ar"
         export RANLIB="$crossConfig-ranlib"
+
+        dontStrip = 1
       '';
    }
    else {}))