summary refs log tree commit diff
path: root/pkgs
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 /pkgs
parenteb6809eafd114404327b1b04133c7caaa7283b76 (diff)
downloadnixlib-365379857fb561df949fc841e80458e317a1d682.tar
nixlib-365379857fb561df949fc841e80458e317a1d682.tar.gz
nixlib-365379857fb561df949fc841e80458e317a1d682.tar.bz2
nixlib-365379857fb561df949fc841e80458e317a1d682.tar.lz
nixlib-365379857fb561df949fc841e80458e317a1d682.tar.xz
nixlib-365379857fb561df949fc841e80458e317a1d682.tar.zst
nixlib-365379857fb561df949fc841e80458e317a1d682.zip
gcl: disable bindnow hardening
Diffstat (limited to 'pkgs')
-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 cf25f989c7c4..0e4d5bed0514 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";