Skip to content

Commit 5634c0d

Browse files
committed
[SourceKit] use "inproc" variant of SourceKit on Linux
since the interprocess version likely won't be available for quite some time given that libXPC hasn't yet been ported, and the in process version nearly works. This is NFC since SourceKit still isn't built by default on Linux.
1 parent 3b378f7 commit 5634c0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/build-script-impl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1757,7 +1757,7 @@ for host in "${ALL_HOSTS[@]}"; do
17571757
)
17581758
fi
17591759

1760-
if [[ "${ENABLE_ASAN}" ]] ; then
1760+
if [[ "${ENABLE_ASAN}" || "$(uname -s)" == "Linux" ]] ; then
17611761
swift_cmake_options=(
17621762
"${swift_cmake_options[@]}"
17631763
-DSWIFT_SOURCEKIT_USE_INPROC_LIBRARY:BOOL=TRUE

0 commit comments

Comments
 (0)