summary refs log tree commit diff
path: root/pkgs/development/libraries/gmp/5.1.x.nix
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2016-03-07 21:39:26 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2016-03-07 21:40:20 +0100
commitbaee91ec60ca724b00027033a8e0d7f97cf376a7 (patch)
tree8b8ead019823bf62dc2afc45fe77bef4b3f3f19f /pkgs/development/libraries/gmp/5.1.x.nix
parentb2b499e6c40a36ff8cdbfd8d27096592d0f394cb (diff)
downloadnixlib-baee91ec60ca724b00027033a8e0d7f97cf376a7.tar
nixlib-baee91ec60ca724b00027033a8e0d7f97cf376a7.tar.gz
nixlib-baee91ec60ca724b00027033a8e0d7f97cf376a7.tar.bz2
nixlib-baee91ec60ca724b00027033a8e0d7f97cf376a7.tar.lz
nixlib-baee91ec60ca724b00027033a8e0d7f97cf376a7.tar.xz
nixlib-baee91ec60ca724b00027033a8e0d7f97cf376a7.tar.zst
nixlib-baee91ec60ca724b00027033a8e0d7f97cf376a7.zip
cc-wrapper: Check if ld supports -z, fixes darwin
Diffstat (limited to 'pkgs/development/libraries/gmp/5.1.x.nix')
-rw-r--r--pkgs/development/libraries/gmp/5.1.x.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/libraries/gmp/5.1.x.nix b/pkgs/development/libraries/gmp/5.1.x.nix
index e803c7c56ac2..5f20d66768e2 100644
--- a/pkgs/development/libraries/gmp/5.1.x.nix
+++ b/pkgs/development/libraries/gmp/5.1.x.nix
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ m4 ];
 
   # FIXME needs gcc 4.9 in bootstrap tools
-  hardeningDisable = [ "stackprotector" ];
+  hardeningDisable = [ "format" "stackprotector" ];
 
   patches = if stdenv.isDarwin then [ ./need-size-t.patch ] else null;