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 41f99fc + 5dc7719 commit f824ca1Copy full SHA for f824ca1
CMakeLists.txt
@@ -647,6 +647,10 @@ option(SWIFT_ENABLE_MACCATALYST
647
"Build the Standard Library and overlays with MacCatalyst support"
648
FALSE)
649
650
+option(SWIFT_ENABLE_BACKTRACING
651
+ "Build backtracing runtime support"
652
+ FALSE)
653
+
654
set(SWIFT_DARWIN_DEPLOYMENT_VERSION_MACCATALYST "14.5" CACHE STRING
655
"Minimum deployment target version for macCatalyst")
656
stdlib/public/CMakeLists.txt
@@ -159,7 +159,9 @@ if(SWIFT_BUILD_STDLIB)
159
add_subdirectory(Observation)
160
endif()
161
162
- add_subdirectory(Backtracing)
+ if(SWIFT_ENABLE_BACKTRACING)
163
+ add_subdirectory(Backtracing)
164
+ endif()
165
166
167
if(SWIFT_BUILD_REMOTE_MIRROR)
0 commit comments