about summary refs log tree commit diff
path: root/pkgs/development/tools/parsing/bison
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-02-22 18:32:53 +0000
committerRobin Gloster <mail@glob.in>2016-02-22 18:32:53 +0000
commit402d57ee8e54f5f5e9398f61d1934de3ff66cf3c (patch)
tree0cb05cedee2857d4b29a488b9efb257bb5960d45 /pkgs/development/tools/parsing/bison
parent57d6a38ed513e80fbd4135b7c2d3a9326a2649fc (diff)
downloadnixlib-402d57ee8e54f5f5e9398f61d1934de3ff66cf3c.tar
nixlib-402d57ee8e54f5f5e9398f61d1934de3ff66cf3c.tar.gz
nixlib-402d57ee8e54f5f5e9398f61d1934de3ff66cf3c.tar.bz2
nixlib-402d57ee8e54f5f5e9398f61d1934de3ff66cf3c.tar.lz
nixlib-402d57ee8e54f5f5e9398f61d1934de3ff66cf3c.tar.xz
nixlib-402d57ee8e54f5f5e9398f61d1934de3ff66cf3c.tar.zst
nixlib-402d57ee8e54f5f5e9398f61d1934de3ff66cf3c.zip
bootstrap env: disable stackprotector hardening until gcc >=4.9
Diffstat (limited to 'pkgs/development/tools/parsing/bison')
-rw-r--r--pkgs/development/tools/parsing/bison/3.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/tools/parsing/bison/3.x.nix b/pkgs/development/tools/parsing/bison/3.x.nix
index ee0074140178..0062bc36561b 100644
--- a/pkgs/development/tools/parsing/bison/3.x.nix
+++ b/pkgs/development/tools/parsing/bison/3.x.nix
@@ -11,6 +11,9 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ m4 perl ] ++ stdenv.lib.optional stdenv.isSunOS help2man;
   propagatedBuildInputs = [ m4 ];
 
+  # FIXME needs gcc 4.9 in bootstrap tools
+  hardening_stackprotector = false;
+
   meta = {
     homepage = "http://www.gnu.org/software/bison/";
     description = "Yacc-compatible parser generator";