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.
1 parent c4fc7ca commit ae271caCopy full SHA for ae271ca
Sources/SwiftDriver/Jobs/FrontendJobHelpers.swift
@@ -266,7 +266,9 @@ extension Driver {
266
if isFrontendArgSupported(.noAllocations) {
267
try commandLine.appendLast(.noAllocations, from: &parsedOptions)
268
}
269
- try commandLine.appendLast(.compilerAssertions, from: &parsedOptions)
+ if isFrontendArgSupported(.compilerAssertions) {
270
+ try commandLine.appendLast(.compilerAssertions, from: &parsedOptions)
271
+ }
272
if isFrontendArgSupported(.enableExperimentalFeature) {
273
try commandLine.appendAll(
274
.enableExperimentalFeature, from: &parsedOptions)
0 commit comments