Merge pull request #309332 from reckenrode/lldb-fix

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

authored by Randy Eckenrode and committed by GitHub 56cafa47 0d0b3f79

+1 -3
+1 -3
pkgs/development/compilers/llvm/common/lldb.nix
··· 50 50 src = src'; 51 51 inherit patches; 52 52 53 - # LLDB expects to find the path to `bin` relative to `lib` on Darwin. It can’t be patched with the location of 54 - # the `lib` output because that would create a cycle between it and the `out` output. 55 - outputs = [ "out" "dev" ] ++ lib.optionals (!stdenv.isDarwin) [ "lib" ]; 53 + outputs = [ "out" "lib" "dev" ]; 56 54 57 55 sourceRoot = lib.optional (lib.versionAtLeast release_version "13") "${src.name}/${pname}"; 58 56