We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 330299d commit c1bdb4fCopy full SHA for c1bdb4f
utils/build-script-impl
@@ -542,9 +542,13 @@ function set_build_options_for_host() {
542
esac
543
544
if [[ "${DARWIN_SDK_DEPLOYMENT_TARGETS}" != "" ]]; then
545
+ # IFS is immediately unset after its use to avoid unwanted
546
+ # replacement of characters in subsequent lines.
547
local IFS=";"; DARWIN_SDK_DEPLOYMENT_TARGETS=($DARWIN_SDK_DEPLOYMENT_TARGETS); unset IFS
548
549
for target in "${DARWIN_SDK_DEPLOYMENT_TARGETS[@]}"; do
550
551
552
local IFS="-"; triple=($target); unset IFS
553
sdk_target=$(toupper ${triple[0]}_${triple[1]})
554
swift_cmake_options+=(
0 commit comments