Fix typo in build-script-impl

targetting -> targeting
This commit is contained in:
Ikko Ashimine
2021-01-20 23:09:34 +09:00
committed by GitHub
parent 6c41322f0d
commit 802788fc1b

View File

@@ -2497,7 +2497,7 @@ for host in "${ALL_HOSTS[@]}"; do
# When we are building LLVM copy over the compiler-rt
# builtins for iOS/tvOS/watchOS to ensure that Swift's
# stdlib can use compiler-rt builtins when targetting iOS/tvOS/watchOS.
# stdlib can use compiler-rt builtins when targeting iOS/tvOS/watchOS.
if [[ "${product}" = "llvm" ]] && [[ "${BUILD_LLVM}" = "1" ]] && [[ "$(uname -s)" = "Darwin" ]]; then
copy_embedded_compiler_rt_builtins_from_darwin_host_toolchain "$(build_directory_bin ${host} llvm)/.."
fi