about summary refs log tree commit diff
path: root/pkgs/development/libraries/glibc
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2012-06-04 19:54:32 +0200
committeraszlig <aszlig@redmoonstudios.org>2012-06-04 19:54:32 +0200
commitd0d4123962ed53266319dff6b19c42444b26bb7a (patch)
tree40c5e7657e33992898e42aee93fb3049196c52f1 /pkgs/development/libraries/glibc
parent104bd01e1def19d6e357689af3f57ef5740d5f8f (diff)
downloadnixlib-d0d4123962ed53266319dff6b19c42444b26bb7a.tar
nixlib-d0d4123962ed53266319dff6b19c42444b26bb7a.tar.gz
nixlib-d0d4123962ed53266319dff6b19c42444b26bb7a.tar.bz2
nixlib-d0d4123962ed53266319dff6b19c42444b26bb7a.tar.lz
nixlib-d0d4123962ed53266319dff6b19c42444b26bb7a.tar.xz
nixlib-d0d4123962ed53266319dff6b19c42444b26bb7a.tar.zst
nixlib-d0d4123962ed53266319dff6b19c42444b26bb7a.zip
Compile glibc without -fstack-protector.
At least until NixOS full supports -fstack-protector it's better to turn it off
at the moment, as previous successful builds didn't include it either.
Diffstat (limited to 'pkgs/development/libraries/glibc')
-rw-r--r--pkgs/development/libraries/glibc/2.13/common.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/development/libraries/glibc/2.13/common.nix b/pkgs/development/libraries/glibc/2.13/common.nix
index 4058ed3d3021..535fb373e04e 100644
--- a/pkgs/development/libraries/glibc/2.13/common.nix
+++ b/pkgs/development/libraries/glibc/2.13/common.nix
@@ -103,6 +103,7 @@ stdenv.mkDerivation ({
     "--enable-add-ons"
     "--sysconfdir=/etc"
     "--localedir=/var/run/current-system/sw/lib/locale"
+    "libc_cv_ssp=no"
     (if kernelHeaders != null
      then "--with-headers=${kernelHeaders}/include"
      else "--without-headers")