about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-10-19 21:20:00 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-10-19 21:20:00 +0000
commit4309788df022c89765cd7f6b178f4ce7a08db600 (patch)
treeec4b7b9772bfb9efb6c94e559bb818c9969b8d4c /pkgs
parent955fe6f69d3cba0fd9e628190f51face166ceec5 (diff)
downloadnixlib-4309788df022c89765cd7f6b178f4ce7a08db600.tar
nixlib-4309788df022c89765cd7f6b178f4ce7a08db600.tar.gz
nixlib-4309788df022c89765cd7f6b178f4ce7a08db600.tar.bz2
nixlib-4309788df022c89765cd7f6b178f4ce7a08db600.tar.lz
nixlib-4309788df022c89765cd7f6b178f4ce7a08db600.tar.xz
nixlib-4309788df022c89765cd7f6b178f4ce7a08db600.tar.zst
nixlib-4309788df022c89765cd7f6b178f4ce7a08db600.zip
Adding a comment on the status of the nscd patch in glibc
svn path=/nixpkgs/branches/stdenv-updates/; revision=24371
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/glibc-2.12/common.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/development/libraries/glibc-2.12/common.nix b/pkgs/development/libraries/glibc-2.12/common.nix
index dfffafe6edd9..7157248c1d8c 100644
--- a/pkgs/development/libraries/glibc-2.12/common.nix
+++ b/pkgs/development/libraries/glibc-2.12/common.nix
@@ -76,6 +76,15 @@ stdenv.mkDerivation ({
     ./nix-locale-archive.patch
 
     /* A fix for a glibc nscd linking bug, reported upstream already.*/
+    /* Currently this fix works only for i686; as it only affects
+       the building of glibc from a final nixpkgs stdenv, we don't care much
+       on whether it works or not. The patch does not affect building
+       from the bootstrap-tools gcc because it does not have libssp at all.
+       TODO: Link ssp to nscd dynamically, and set the proper rpath to
+       nscd, although linking dynamically will make this libc
+       dynamically linked with gcc's libssp, and gcc's libssp is dynamically
+       linked with stdenv.glibc's libc. This does not look very correct.
+       */
     ./nscd-ssp-linking.patch
 
     /* Workaround for a glibc bug reported upstraem already */