summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--pkgs/development/libraries/libressl/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/development/libraries/libressl/default.nix b/pkgs/development/libraries/libressl/default.nix
index 34262b89cd131..32b58c736fb29 100644
--- a/pkgs/development/libraries/libressl/default.nix
+++ b/pkgs/development/libraries/libressl/default.nix
@@ -25,7 +25,10 @@ let
 
     # Ensure that the output libraries do not require an executable stack.
     # Without this, libcrypto would be built with the executable stack flag set.
-    NIX_LDFLAGS = ["-z" "noexecstack"];
+    # For Clang, the flag is '--noexecstack', for GCC it is '-z noexecstack'.
+    NIX_LDFLAGS = if stdenv.isDarwin
+      then ["--noexecstack"]
+      else ["-z" "noexecstack"];
 
     enableParallelBuilding = true;