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 src = src'; 51 inherit patches; 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" ]; 56 57 sourceRoot = lib.optional (lib.versionAtLeast release_version "13") "${src.name}/${pname}"; 58
··· 50 src = src'; 51 inherit patches; 52 53 + outputs = [ "out" "lib" "dev" ]; 54 55 sourceRoot = lib.optional (lib.versionAtLeast release_version "13") "${src.name}/${pname}"; 56