Skip to content

Commit f0f6e94

Browse files
committed
[Build] Remove reference to implicit backtracing import.
This wasn't necessary anyway, since it's off by default and we never changed that because of the plan to move the backtracing code elsewhere. I don't think this is in fact a blocker because it looks like we test for it first, but we should remove it anyway. rdar://143310345
1 parent fd232f9 commit f0f6e94

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,15 +44,11 @@ option(SWIFT_SYNTAX_ENABLE_WMO_PRE_3_26
4444
include(AddSwiftHostLibrary)
4545
include(SwiftCompilerCapability)
4646

47-
# Don't link with 'string-processing' and 'backtracing'.
47+
# Don't link with 'string-processing'
4848
swift_supports_implicit_module("string-processing" SWIFT_SUPPORTS_DISABLE_IMPLICIT_STRING_PROCESSING_MODULE_IMPORT)
49-
swift_supports_implicit_module("backtracing" SWIFT_SUPPORTS_DISABLE_IMPLICIT_BACKTRACING_MODULE_IMPORT)
5049
if(SWIFT_SUPPORTS_DISABLE_IMPLICIT_STRING_PROCESSING_MODULE_IMPORT)
5150
add_compile_options("$<$<COMPILE_LANGUAGE:Swift>:SHELL:-Xfrontend -disable-implicit-string-processing-module-import>")
5251
endif()
53-
if(SWIFT_SUPPORTS_DISABLE_IMPLICIT_BACKTRACING_MODULE_IMPORT)
54-
add_compile_options("$<$<COMPILE_LANGUAGE:Swift>:SHELL:-Xfrontend -disable-implicit-backtracing-module-import>")
55-
endif()
5652

5753
if(NOT DEFINED Swift_COMPILER_PACKAGE_CMO_SUPPORT AND SWIFTSYNTAX_EMIT_MODULE)
5854
swift_get_package_cmo_support(Swift_COMPILER_PACKAGE_CMO_SUPPORT)

0 commit comments

Comments
 (0)