File tree Expand file tree Collapse file tree 3 files changed +0
-110
lines changed Expand file tree Collapse file tree 3 files changed +0
-110
lines changed Original file line number Diff line number Diff line change @@ -99,10 +99,6 @@ option(SWIFT_BUILD_PERF_TESTSUITE
99
99
"Create in-tree targets for building swift performance benchmarks."
100
100
FALSE )
101
101
102
- option (SWIFT_BUILD_EXTERNAL_PERF_TESTSUITE
103
- "Create out-of-tree targets for building swift performance benchmarks."
104
- FALSE )
105
-
106
102
option (SWIFT_INCLUDE_TESTS "Create targets for building/running tests." TRUE )
107
103
108
104
option (SWIFT_INCLUDE_DOCS
@@ -1120,10 +1116,6 @@ if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Darwin")
1120
1116
if (SWIFT_BUILD_PERF_TESTSUITE )
1121
1117
add_subdirectory (benchmark )
1122
1118
endif ()
1123
- if (SWIFT_BUILD_EXTERNAL_PERF_TESTSUITE )
1124
- include (SwiftExternalBenchmarkBuild )
1125
- add_external_benchmark_suite ()
1126
- endif ()
1127
1119
endif ()
1128
1120
1129
1121
if (SWIFT_INCLUDE_TESTS )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -1622,7 +1622,6 @@ for host in "${ALL_HOSTS[@]}"; do
1622
1622
1623
1623
# Don't build benchmarks and tests when building cross compiler.
1624
1624
build_perf_testsuite_this_time=false
1625
- build_external_perf_testsuite_this_time=false
1626
1625
build_tests_this_time=false
1627
1626
1628
1627
native_llvm_tools_path=" $( build_directory " ${LOCAL_HOST} " llvm) /bin"
@@ -1631,7 +1630,6 @@ for host in "${ALL_HOSTS[@]}"; do
1631
1630
else
1632
1631
# FIXME: Why is the next line not using false_true?
1633
1632
build_perf_testsuite_this_time=$( true_false " $( not ${SKIP_BUILD_BENCHMARKS} ) " )
1634
- build_external_perf_testsuite_this_time=$( false_true " ${SKIP_BUILD_EXTERNAL_BENCHMARKS} " )
1635
1633
build_tests_this_time=${SWIFT_INCLUDE_TESTS}
1636
1634
fi
1637
1635
@@ -1699,7 +1697,6 @@ for host in "${ALL_HOSTS[@]}"; do
1699
1697
-DSWIFT_BUILD_DYNAMIC_SDK_OVERLAY:BOOL=$( true_false " ${BUILD_SWIFT_DYNAMIC_SDK_OVERLAY} " )
1700
1698
-DSWIFT_BUILD_STATIC_SDK_OVERLAY:BOOL=$( true_false " ${BUILD_SWIFT_STATIC_SDK_OVERLAY} " )
1701
1699
-DSWIFT_BUILD_PERF_TESTSUITE:BOOL=$( true_false " ${build_perf_testsuite_this_time} " )
1702
- -DSWIFT_BUILD_EXTERNAL_PERF_TESTSUITE:BOOL=$( true_false " ${build_external_perf_testsuite_this_time} " )
1703
1700
-DSWIFT_BUILD_EXAMPLES:BOOL=$( true_false " ${BUILD_SWIFT_EXAMPLES} " )
1704
1701
-DSWIFT_INCLUDE_TESTS:BOOL=$( true_false " ${build_tests_this_time} " )
1705
1702
-DSWIFT_EMBED_BITCODE_SECTION:BOOL=$( true_false " ${EMBED_BITCODE_SECTION} " )
You can’t perform that action at this time.
0 commit comments