summary refs log tree commit diff
path: root/pkgs/development/r-modules
diff options
context:
space:
mode:
authorTheodore Ni <3806110+tjni@users.noreply.github.com>2022-09-04 11:47:02 -0700
committerTheodore Ni <3806110+tjni@users.noreply.github.com>2022-09-04 11:47:02 -0700
commite0a5a1c3a0851aeb6e896bfe52b212c30f9ce3c7 (patch)
treeb27e6d24b085fe235d360feb27ced56af973383b /pkgs/development/r-modules
parent1ed43116cdb9670e9241138996a2c72d357de70e (diff)
rPackages: reenable stackprotector on aarch64-darwin
The original error that required disabling the stack protector on
aarch64-darwin has been fixed in GCC.
Diffstat (limited to 'pkgs/development/r-modules')
-rw-r--r--pkgs/development/r-modules/generic-builder.nix2
1 files changed, 0 insertions, 2 deletions
diff --git a/pkgs/development/r-modules/generic-builder.nix b/pkgs/development/r-modules/generic-builder.nix
index beb669d9893f4..880fff44ed644 100644
--- a/pkgs/development/r-modules/generic-builder.nix
+++ b/pkgs/development/r-modules/generic-builder.nix
@@ -10,8 +10,6 @@ stdenv.mkDerivation ({
   NIX_CFLAGS_COMPILE =
     lib.optionalString stdenv.isDarwin "-I${lib.getDev libcxx}/include/c++/v1";
 
-  hardeningDisable = lib.optionals (stdenv.isAarch64 && stdenv.isDarwin) [ "stackprotector" ];
-
   configurePhase = ''
     runHook preConfigure
     export R_LIBS_SITE="$R_LIBS_SITE''${R_LIBS_SITE:+:}$out/library"