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.
2 parents 2445018 + 55021a8 commit fdb0fdaCopy full SHA for fdb0fda
benchmark/CMakeLists.txt
@@ -229,6 +229,14 @@ endif()
229
set(SWIFT_BENCHMARK_EXTRA_FLAGS "" CACHE STRING
230
"Extra options to pass to swiftc when building the benchmarks")
231
232
+if (SWIFT_BENCHMARK_BUILT_STANDALONE)
233
+ # This option's value must match the value of the same option used when
234
+ # building the swift runtime.
235
+ option(SWIFT_RUNTIME_ENABLE_LEAK_CHECKER
236
+ "Should the runtime be built with support for non-thread-safe leak detecting entrypoints"
237
+ FALSE)
238
+endif()
239
+
240
set(SWIFT_BENCHMARK_NUM_O_ITERATIONS "" CACHE STRING
241
"Number of iterations to perform when running -O benchmarks via cmake")
242
set(SWIFT_BENCHMARK_NUM_ONONE_ITERATIONS "" CACHE STRING
0 commit comments