mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Merge branch 'master' into master-next
# Conflicts: # utils/build-script-impl
This commit is contained in:
@@ -2153,8 +2153,18 @@ for host in "${ALL_HOSTS[@]}"; do
|
||||
fi
|
||||
if [ "${SKIP_BUILD_LLVM}" ] ; then
|
||||
# We can't skip the build completely because the standalone
|
||||
# build of Swift depend on these for testing etc.
|
||||
build_targets=(llvm-tblgen clang-resource-headers intrinsics_gen clang-tablegen-targets FileCheck not)
|
||||
# build of Swift depend on these for building and testing.
|
||||
build_targets=(llvm-tblgen clang-resource-headers intrinsics_gen clang-tablegen-targets)
|
||||
# If we are not performing a toolchain only build, then we
|
||||
# also want to include FileCheck and not for testing
|
||||
# purposes.
|
||||
if [[ ! "${BUILD_TOOLCHAIN_ONLY}" ]] ; then
|
||||
build_targets=(
|
||||
"${build_targets[@]}"
|
||||
FileCheck
|
||||
not
|
||||
)
|
||||
fi
|
||||
fi
|
||||
|
||||
if [ "${HOST_LIBTOOL}" ] ; then
|
||||
|
||||
Reference in New Issue
Block a user