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 e53435f + a5ecc34 commit 35cb702Copy full SHA for 35cb702
Sources/SwiftDriver/ExplicitModuleBuilds/ModuleDependencyScanning.swift
@@ -152,6 +152,13 @@ public extension Driver {
152
let scannerJob = try dependencyScanningJob()
153
let forceResponseFiles = parsedOptions.hasArgument(.driverForceResponseFiles)
154
let dependencyGraph: InterModuleDependencyGraph
155
+
156
+ if parsedOptions.contains(.v) {
157
+ let arguments: [String] = try executor.resolver.resolveArgumentList(for: scannerJob,
158
+ useResponseFiles: .disabled)
159
+ stdoutStream <<< arguments.map { $0.spm_shellEscaped() }.joined(separator: " ") <<< "\n"
160
+ stdoutStream.flush()
161
+ }
162
163
let isSwiftScanLibAvailable = !(try initSwiftScanLib())
164
if isSwiftScanLibAvailable {
0 commit comments