From b96226578e8454f2db2b80bb4847bebd748a3857 Mon Sep 17 00:00:00 2001 From: Yueh-Shun Li <44064051+ShamrockLee@users.noreply.github.com> Date: Sun, 5 Mar 2023 03:30:17 +0800 Subject: [PATCH] root: specify separateDebugInfo = true for all pltforms --- pkgs/applications/science/misc/root/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/science/misc/root/default.nix b/pkgs/applications/science/misc/root/default.nix index e38bb2ec8fdd..a33af5795108 100644 --- a/pkgs/applications/science/misc/root/default.nix +++ b/pkgs/applications/science/misc/root/default.nix @@ -265,9 +265,10 @@ stdenv.mkDerivation rec { # add the outPath of root.debug into NIX_DEBUG_INFO_DIRS (in PATH-like format) # and make sure that gdb from Nixpkgs can be found in PATH. # - # Building with debug info and separating them is not supported on all systems - # e.g. Darwin fails to support it (#203380) - separateDebugInfo = stdenv.hostPlatform.isLinux; + # Darwin currently fails to support it (#203380) + # we set it to true hoping to benefit from the future fix. + # Before that, please make sure if root.debug exists before using it. + separateDebugInfo = true; setupHook = ./setup-hook.sh;