about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorTristan Ross <tristan.ross@midstall.com>2024-06-14 21:59:17 -0700
committerTristan Ross <tristan.ross@midstall.com>2024-06-16 00:21:52 -0700
commit852c13ca9b6806ce54855f4c1b138662ed47b72d (patch)
tree976dae711ab691c098d9466c60cbe08932f13291 /pkgs/development/libraries
parentf0f420e62205fc86521dcc22918a28e3f8eae7ee (diff)
libbsd: fix version script with lld 17+
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/libbsd/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libbsd/default.nix b/pkgs/development/libraries/libbsd/default.nix
index 9e80d17b8a033..fa8b6b65950bc 100644
--- a/pkgs/development/libraries/libbsd/default.nix
+++ b/pkgs/development/libraries/libbsd/default.nix
@@ -35,6 +35,9 @@ stdenv.mkDerivation rec {
     url = "https://gitlab.freedesktop.org/libbsd/libbsd.git";
   };
 
+  # Fix undefined reference errors with version script under LLVM.
+  configureFlags = lib.optionals (stdenv.cc.bintools.isLLVM && lib.versionAtLeast stdenv.cc.bintools.version "17") [ "LDFLAGS=-Wl,--undefined-version" ];
+
   meta = with lib; {
     description = "Common functions found on BSD systems";
     homepage = "https://libbsd.freedesktop.org/";