Revert "llvmPackages.lldb: combine out and lib outputs on Darwin"

This reverts commit 210ebc2123.
This commit is contained in:
Randy Eckenrode 2024-05-05 13:39:16 -04:00
parent a14bae871a
commit 7d9ac4d1c3
No known key found for this signature in database
GPG Key ID: 64C1CD4EC2A600D9

View File

@ -50,9 +50,7 @@ stdenv.mkDerivation (rec {
src = src';
inherit patches;
# LLDB expects to find the path to `bin` relative to `lib` on Darwin. It cant be patched with the location of
# the `lib` output because that would create a cycle between it and the `out` output.
outputs = [ "out" "dev" ] ++ lib.optionals (!stdenv.isDarwin) [ "lib" ];
outputs = [ "out" "lib" "dev" ];
sourceRoot = lib.optional (lib.versionAtLeast release_version "13") "${src.name}/${pname}";