You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Sources/SwiftOptions/Options.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -389,7 +389,7 @@ extension Option {
389
389
publicstaticletltoLibrary:Option=Option("-lto-library",.separate, attributes:[.frontend,.argumentIsPath], metaVar:"<lto-library>", helpText:"Perform LTO with <lto-library>")
390
390
publicstaticletlto:Option=Option("-lto=",.joined, attributes:[.frontend,.noInteractive], helpText:"Specify the LTO type to either 'llvm-thin' or 'llvm-full'")
391
391
publicstaticletL:Option=Option("-L",.joinedOrSeparate, attributes:[.frontend,.doesNotAffectIncrementalBuild,.argumentIsPath], helpText:"Add directory to library link search path", group:.linkerOption)
392
-
publicstaticletl:Option=Option("-l",.joined, attributes:[.frontend,.doesNotAffectIncrementalBuild], helpText:"Specifies a library which should be linked against", group:.linkerOption)
392
+
publicstaticletl:Option=Option("-l",.joinedOrSeparate, attributes:[.frontend,.doesNotAffectIncrementalBuild], helpText:"Specifies a library which should be linked against", group:.linkerOption)
393
393
publicstaticletmergeModules:Option=Option("-merge-modules",.flag, attributes:[.frontend,.noDriver], helpText:"Merge the input modules without otherwise processing them", group:.modes)
394
394
publicstaticletmigrateKeepObjcVisibility:Option=Option("-migrate-keep-objc-visibility",.flag, attributes:[.frontend,.noInteractive], helpText:"When migrating, add '@objc' to declarations that would've been implicitly visible in Swift 3")
395
395
publicstaticletmigratorUpdateSdk:Option=Option("-migrator-update-sdk",.flag, attributes:[.frontend,.noInteractive], helpText:"Does nothing. Temporary compatibility flag for Xcode.")
0 commit comments