Skip to content

Commit 3f9764a

Browse files
committed
[cmake] Move 3x user configurable debugging options into that section instead of the general user configurable part. NFC.
1 parent f81d767 commit 3f9764a

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,6 @@ option(SWIFT_STDLIB_ASSERTIONS
3232
"Enable internal checks for the Swift standard library (useful for debugging the library itself, does not affect checks required for safety)"
3333
"${SWIFT_STDLIB_ASSERTIONS_default}")
3434

35-
option(SWIFT_SERIALIZE_STDLIB_UNITTEST
36-
"Compile the StdlibUnittest module with -sil-serialize-all to increase the test coverage for the optimizer"
37-
FALSE)
38-
39-
option(SWIFT_STDLIB_SIL_DEBUGGING
40-
"Compile the Swift standard library with -gsil to enable debugging and profiling on SIL level"
41-
FALSE)
42-
43-
option(SWIFT_CHECK_INCREMENTAL_COMPILATION
44-
"Check if incremental compilation works when compiling the Swift libraries"
45-
FALSE)
46-
4735
option(SWIFT_BUILD_TOOLS
4836
"Build the Swift compiler and other tools"
4937
TRUE)
@@ -254,6 +242,18 @@ option(SWIFT_RUNTIME_CLOBBER_FREED_OBJECTS
254242
"Overwrite memory for deallocated Swift objects"
255243
"${SWIFT_RUNTIME_CLOBBER_FREED_OBJECTS_default}")
256244

245+
option(SWIFT_SERIALIZE_STDLIB_UNITTEST
246+
"Compile the StdlibUnittest module with -sil-serialize-all to increase the test coverage for the optimizer"
247+
FALSE)
248+
249+
option(SWIFT_STDLIB_SIL_DEBUGGING
250+
"Compile the Swift standard library with -gsil to enable debugging and profiling on SIL level"
251+
FALSE)
252+
253+
option(SWIFT_CHECK_INCREMENTAL_COMPILATION
254+
"Check if incremental compilation works when compiling the Swift libraries"
255+
FALSE)
256+
257257
#
258258
# User-configurable experimental options. Do not use in production builds.
259259
#

0 commit comments

Comments
 (0)