File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -390,7 +390,6 @@ function set_deployment_target_based_options() {
390
390
;;
391
391
esac
392
392
393
- native_llvm_build=$( build_directory macosx-x86_64 llvm)
394
393
llvm_cmake_options=(
395
394
-DCMAKE_OSX_DEPLOYMENT_TARGET:STRING=" ${cmake_osx_deployment_target} "
396
395
-DCMAKE_OSX_SYSROOT:PATH=" $( xcrun --sdk $xcrun_sdk_name --show-sdk-path) "
@@ -1040,7 +1039,6 @@ COMMON_CMAKE_OPTIONS=(
1040
1039
)
1041
1040
1042
1041
COMMON_C_FLAGS=" "
1043
- COMMON_CXX_FLAGS=" "
1044
1042
1045
1043
if [[ " ${ENABLE_ASAN} " ]] ; then
1046
1044
COMMON_CMAKE_OPTIONS=(
@@ -1331,7 +1329,7 @@ function should_build_perftestsuite() {
1331
1329
return
1332
1330
fi
1333
1331
1334
- echo $( true_false " ${BUILD_SWIFT_PERF_TESTSUITE} " )
1332
+ true_false " ${BUILD_SWIFT_PERF_TESTSUITE} "
1335
1333
}
1336
1334
1337
1335
function set_swiftpm_bootstrap_command() {
@@ -1746,7 +1744,7 @@ for deployment_target in "${NATIVE_TOOLS_DEPLOYMENT_TARGETS[@]}" "${CROSS_TOOLS_
1746
1744
fi
1747
1745
1748
1746
# Get the build date
1749
- LLDB_BUILD_DATE=` date +%Y-%m-%d`
1747
+ LLDB_BUILD_DATE=$( date +%Y-%m-%d)
1750
1748
1751
1749
case " $( uname -s) " in
1752
1750
Linux)
@@ -2174,10 +2172,10 @@ for deployment_target in "${NATIVE_TOOLS_DEPLOYMENT_TARGETS[@]}" "${CROSS_TOOLS_
2174
2172
continue
2175
2173
fi
2176
2174
LIB_TARGET=" linux"
2177
- if [[ ` uname -s` == " FreeBSD" ]]; then
2175
+ if [[ $( uname -s) == " FreeBSD" ]]; then
2178
2176
LIB_TARGET=" freebsd"
2179
2177
fi
2180
- if [[ ` uname -s` == " Darwin" ]]; then
2178
+ if [[ $( uname -s) == " Darwin" ]]; then
2181
2179
LIB_TARGET=" macosx"
2182
2180
fi
2183
2181
XCTEST_INSTALL_PREFIX=" ${INSTALL_DESTDIR} " /" ${INSTALL_PREFIX} " /lib/swift/" ${LIB_TARGET} "
You can’t perform that action at this time.
0 commit comments