gdb: fix musl build

fixes #104133

Signed-off-by: Jörg Thalheim <joerg@thalheim.io>
wip/yesman
Jörg Thalheim 3 years ago
parent a346c68411
commit aaae419aac
No known key found for this signature in database
GPG Key ID: B3F5D81B0C6967C4
  1. 3
      pkgs/development/tools/misc/gdb/default.nix

@ -82,7 +82,8 @@ stdenv.mkDerivation rec {
"--with-mpfr=${mpfr.dev}"
"--with-expat" "--with-libexpat-prefix=${expat.dev}"
"--with-auto-load-safe-path=${builtins.concatStringsSep ":" safePaths}"
] ++ lib.optional (!pythonSupport) "--without-python";
] ++ lib.optional (!pythonSupport) "--without-python"
++ lib.optional stdenv.hostPlatform.isMusl "--disable-nls";
postInstall =
'' # Remove Info files already provided by Binutils and other packages.

Loading…
Cancel
Save