summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-05-09 22:21:57 +0000
committerRobin Gloster <mail@glob.in>2016-05-30 19:34:16 +0000
commit365379857fb561df949fc841e80458e317a1d682 (patch)
treed2d651770c6948f04a717258c9d2bf6476d75373
parenteb6809eafd114404327b1b04133c7caaa7283b76 (diff)
downloadnixpkgs-365379857fb561df949fc841e80458e317a1d682.tar
nixpkgs-365379857fb561df949fc841e80458e317a1d682.tar.gz
nixpkgs-365379857fb561df949fc841e80458e317a1d682.tar.bz2
nixpkgs-365379857fb561df949fc841e80458e317a1d682.tar.lz
nixpkgs-365379857fb561df949fc841e80458e317a1d682.tar.xz
nixpkgs-365379857fb561df949fc841e80458e317a1d682.tar.zst
nixpkgs-365379857fb561df949fc841e80458e317a1d682.zip
gcl: disable bindnow hardening
-rw-r--r--pkgs/development/compilers/gcl/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/gcl/default.nix b/pkgs/development/compilers/gcl/default.nix
index cf25f989c7c..0e4d5bed051 100644
--- a/pkgs/development/compilers/gcl/default.nix
+++ b/pkgs/development/compilers/gcl/default.nix
@@ -32,7 +32,7 @@ stdenv.mkDerivation rec {
     "--enable-ansi"
   ];
 
-  hardeningDisable = [ "pic" ];
+  hardeningDisable = [ "pic" "bindnow" ];
 
   NIX_CFLAGS_COMPILE = "-fgnu89-inline";