Merge branch 'master' into master-next

# Conflicts:
#	utils/build-script-impl
This commit is contained in:
Karoy Lorentey
2019-05-29 16:29:40 -07:00
4 changed files with 32 additions and 4 deletions

View File

@@ -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