mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 08:28:20 +00:00
gdb: Remove --with-separate-debug-dir
We don't need this anymore since NixOS now sets $NIX_DEBUG_INFO_DIRS.
This commit is contained in:
parent
ee9a15b323
commit
30a1b94926
|
@ -60,10 +60,7 @@ stdenv.mkDerivation rec {
|
|||
configureFlags = with stdenv.lib; [
|
||||
"--with-gmp=${gmp.dev}" "--with-mpfr=${mpfr.dev}" "--with-system-readline"
|
||||
"--with-system-zlib" "--with-expat" "--with-libexpat-prefix=${expat.dev}"
|
||||
] ++ stdenv.lib.optional hostPlatform.isLinux
|
||||
# TODO(@Ericson2314): make this conditional on whether host platform is NixOS
|
||||
"--with-separate-debug-dir=/run/current-system/sw/lib/debug"
|
||||
++ stdenv.lib.optional (!pythonSupport) "--without-python"
|
||||
] ++ stdenv.lib.optional (!pythonSupport) "--without-python"
|
||||
++ stdenv.lib.optional multitarget "--enable-targets=all";
|
||||
|
||||
postInstall =
|
||||
|
|
Loading…
Reference in a new issue