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.
-Xfrontend -no-clang-module-breadcrumbs
1 parent b1a0fd7 commit 492c48eCopy full SHA for 492c48e
swift/internal/compiling.bzl
@@ -156,6 +156,20 @@ def compile_action_configs(
156
configurators = [_output_object_or_file_map_configurator],
157
),
158
159
+ # Don't embed Clang module breadcrumbs in debug info.
160
+ swift_toolchain_config.action_config(
161
+ actions = [swift_action_names.COMPILE],
162
+ configurators = [
163
+ swift_toolchain_config.add_arg(
164
+ "-Xfrontend",
165
+ "-no-clang-module-breadcrumbs",
166
+ ),
167
+ ],
168
+ features = [
169
+ SWIFT_FEATURE_CACHEABLE_SWIFTMODULES,
170
171
172
+
173
# Emit precompiled Clang modules, and embed all files that were read
174
# during compilation into the PCM.
175
swift_toolchain_config.action_config(
0 commit comments