about summary refs log tree commit diff
path: root/pkgs/development/tools/misc
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-14 01:45:14 -0400
committerJohn Ericson <John.Ericson@Obsidian.Systems>2017-09-14 10:27:13 -0400
commite5567bae2dc8eaf61bb31d1913a3f5e4c910fa16 (patch)
treef23586f24b14ab5a5c1940f85ba965aa9cb9ad9a /pkgs/development/tools/misc
parent392a014ff2309bb86b3fdefba96b5c3b7d263f30 (diff)
downloadnixlib-e5567bae2dc8eaf61bb31d1913a3f5e4c910fa16.tar
nixlib-e5567bae2dc8eaf61bb31d1913a3f5e4c910fa16.tar.gz
nixlib-e5567bae2dc8eaf61bb31d1913a3f5e4c910fa16.tar.bz2
nixlib-e5567bae2dc8eaf61bb31d1913a3f5e4c910fa16.tar.lz
nixlib-e5567bae2dc8eaf61bb31d1913a3f5e4c910fa16.tar.xz
nixlib-e5567bae2dc8eaf61bb31d1913a3f5e4c910fa16.tar.zst
nixlib-e5567bae2dc8eaf61bb31d1913a3f5e4c910fa16.zip
treewide: Do not limit hardenging because gcc 4.9 in bootstrap
Bootstrap tools has since been bumped
Diffstat (limited to 'pkgs/development/tools/misc')
-rw-r--r--pkgs/development/tools/misc/binutils/default.nix3
-rw-r--r--pkgs/development/tools/misc/gnum4/default.nix3
-rw-r--r--pkgs/development/tools/misc/patchelf/default.nix3
-rw-r--r--pkgs/development/tools/misc/texinfo/6.3.nix3
4 files changed, 0 insertions, 12 deletions
diff --git a/pkgs/development/tools/misc/binutils/default.nix b/pkgs/development/tools/misc/binutils/default.nix
index 549503f0013f..62b4812fae5b 100644
--- a/pkgs/development/tools/misc/binutils/default.nix
+++ b/pkgs/development/tools/misc/binutils/default.nix
@@ -61,9 +61,6 @@ stdenv.mkDerivation rec {
 
   inherit noSysDirs;
 
-  # FIXME needs gcc 4.9 in bootstrap tools
-  hardeningDisable = [ "stackprotector" ];
-
   preConfigure = ''
     # Clear the default library search path.
     if test "$noSysDirs" = "1"; then
diff --git a/pkgs/development/tools/misc/gnum4/default.nix b/pkgs/development/tools/misc/gnum4/default.nix
index 33ea78907468..9cd6e2c5e1ac 100644
--- a/pkgs/development/tools/misc/gnum4/default.nix
+++ b/pkgs/development/tools/misc/gnum4/default.nix
@@ -15,9 +15,6 @@ stdenv.mkDerivation rec {
   # Upstream is aware of it; it may be in the next release.
   patches = [ ./s_isdir.patch ] ++ stdenv.lib.optional hostPlatform.isDarwin stdenv.secure-format-patch;
 
-  # FIXME needs gcc 4.9 in bootstrap tools
-  hardeningDisable = [ "stackprotector" ];
-
   meta = {
     homepage = http://www.gnu.org/software/m4/;
     description = "GNU M4, a macro processor";
diff --git a/pkgs/development/tools/misc/patchelf/default.nix b/pkgs/development/tools/misc/patchelf/default.nix
index 787b434df3ce..1982a25e3df0 100644
--- a/pkgs/development/tools/misc/patchelf/default.nix
+++ b/pkgs/development/tools/misc/patchelf/default.nix
@@ -10,9 +10,6 @@ stdenv.mkDerivation rec {
 
   setupHook = [ ./setup-hook.sh ];
 
-  # FIXME needs gcc 4.9 in bootstrap tools
-  hardeningDisable = [ "stackprotector" ];
-
   #doCheck = true; # problems when loading libc.so.6
 
   meta = {
diff --git a/pkgs/development/tools/misc/texinfo/6.3.nix b/pkgs/development/tools/misc/texinfo/6.3.nix
index 704611e315a3..c6d3a6f66773 100644
--- a/pkgs/development/tools/misc/texinfo/6.3.nix
+++ b/pkgs/development/tools/misc/texinfo/6.3.nix
@@ -17,9 +17,6 @@ stdenv.mkDerivation rec {
 
   configureFlags = stdenv.lib.optional stdenv.isSunOS "AWK=${gawk}/bin/awk";
 
-  # FIXME needs gcc 4.9 in bootstrap tools
-  hardeningDisable = [ "stackprotector" ];
-
   preInstall = ''
     installFlags="TEXMF=$out/texmf-dist";
     installTargets="install install-tex";