Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 16 additions & 13 deletions utils/build-script-impl
Original file line number Diff line number Diff line change
Expand Up @@ -3538,24 +3538,27 @@ for host in "${ALL_HOSTS[@]}"; do
echo "--install-destdir is required to install products."
exit 1
fi

case ${host} in
linux-*)
if [[ "$using_xcodebuild" == "TRUE" ]] ; then
case ${host} in
linux-*)
;;
freebsd-*)
freebsd-*)
;;
cygwin-*)
cygwin-*)
;;
haiku-*)
haiku-*)
;;
macosx-*)
set_lldb_xcodebuild_options
set_lldb_build_mode
with_pushd ${LLDB_SOURCE_DIR} \
call xcodebuild -target toolchain -configuration ${LLDB_BUILD_MODE} install ${lldb_xcodebuild_options[@]} DSTROOT="${host_install_destdir}" LLDB_TOOLCHAIN_PREFIX="${TOOLCHAIN_PREFIX}"
continue
macosx-*)
set_lldb_xcodebuild_options
set_lldb_build_mode
with_pushd ${LLDB_SOURCE_DIR} \
call xcodebuild -target toolchain -configuration ${LLDB_BUILD_MODE} install ${lldb_xcodebuild_options[@]} DSTROOT="${host_install_destdir}" LLDB_TOOLCHAIN_PREFIX="${TOOLCHAIN_PREFIX}"
continue
;;
esac
esac
else
INSTALL_TARGETS="install-lldb"
fi
;;
swiftpm)
if [[ -z "${INSTALL_SWIFTPM}" ]] ; then
Expand Down