File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,9 @@ extension Driver {
92
92
commandLine. appendPath ( outputPath)
93
93
if isFeatureSupported ( . emit_abi_descriptor) {
94
94
commandLine. appendFlag ( . emitAbiDescriptorPath)
95
- commandLine. appendPath ( outputPath. replacingExtension ( with: . jsonABIBaseline) )
95
+ let abiOutput = outputPath. replacingExtension ( with: . jsonABIBaseline)
96
+ commandLine. appendPath ( abiOutput)
97
+ outputs. append ( TypedVirtualPath ( file: abiOutput. intern ( ) , type: . jsonABIBaseline) )
96
98
}
97
99
return Job (
98
100
moduleName: moduleOutputInfo. name,
Original file line number Diff line number Diff line change @@ -78,7 +78,9 @@ extension Driver {
78
78
79
79
if isFeatureSupported ( . emit_abi_descriptor) {
80
80
commandLine. appendFlag ( . emitAbiDescriptorPath)
81
- commandLine. appendPath ( outputPath. replacingExtension ( with: . jsonABIBaseline) )
81
+ let abiOutput = outputPath. replacingExtension ( with: . jsonABIBaseline)
82
+ commandLine. appendPath ( abiOutput)
83
+ outputs. append ( TypedVirtualPath ( file: abiOutput. intern ( ) , type: . jsonABIBaseline) )
82
84
}
83
85
return Job (
84
86
moduleName: moduleOutputInfo. name,
You can’t perform that action at this time.
0 commit comments