summary refs log tree commit diff
path: root/pkgs/development/compilers/gcc/4.8
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2017-12-31 09:51:58 +0100
committerVladimír Čunát <vcunat@gmail.com>2017-12-31 09:53:49 +0100
commit1fcd92ce923d33ab3d8c0b6c6d42473b135f114b (patch)
treec0f696c1c2d3ff82067d891ee25bb4f44af54880 /pkgs/development/compilers/gcc/4.8
parent4d2b7638173afb4c0f0c12a43654bcff5c9500ab (diff)
parentab3a12ed7ee0de4d247a8017151a1bf01829f6f7 (diff)
downloadnixlib-1fcd92ce923d33ab3d8c0b6c6d42473b135f114b.tar
nixlib-1fcd92ce923d33ab3d8c0b6c6d42473b135f114b.tar.gz
nixlib-1fcd92ce923d33ab3d8c0b6c6d42473b135f114b.tar.bz2
nixlib-1fcd92ce923d33ab3d8c0b6c6d42473b135f114b.tar.lz
nixlib-1fcd92ce923d33ab3d8c0b6c6d42473b135f114b.tar.xz
nixlib-1fcd92ce923d33ab3d8c0b6c6d42473b135f114b.tar.zst
nixlib-1fcd92ce923d33ab3d8c0b6c6d42473b135f114b.zip
Merge branch 'master' into staging
A few thousand rebuilds from master, again.
Hydra: ?compare=1422362
Diffstat (limited to 'pkgs/development/compilers/gcc/4.8')
-rw-r--r--pkgs/development/compilers/gcc/4.8/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/compilers/gcc/4.8/default.nix b/pkgs/development/compilers/gcc/4.8/default.nix
index 91daeadba707..a28ad871ead2 100644
--- a/pkgs/development/compilers/gcc/4.8/default.nix
+++ b/pkgs/development/compilers/gcc/4.8/default.nix
@@ -459,8 +459,11 @@ stdenv.mkDerivation ({
       "-Wl,${libpthreadCross.TARGET_LDFLAGS}"
     ]);
 
-  passthru =
-    { inherit langC langCC langObjC langObjCpp langAda langFortran langVhdl langGo version; isGNU = true; };
+  passthru = {
+    inherit langC langCC langObjC langObjCpp langAda langFortran langVhdl langGo version;
+    isGNU = true;
+    hardeningUnsupportedFlags = [ "stackprotector" ];
+  };
 
   inherit enableParallelBuilding enableMultilib;