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
+3-1
Original file line number
Diff line number
Diff line change
@@ -531,6 +531,7 @@ extension Option {
531
531
publicstaticletjson_:Option=Option("--json",.flag, alias:Option.json, attributes:[.noDriver], helpText:"Print output in JSON format.")
532
532
publicstaticletj:Option=Option("-j",.joinedOrSeparate, attributes:[.doesNotAffectIncrementalBuild], metaVar:"<n>", helpText:"Number of commands to execute in parallel")
publicstaticletldPath:Option=Option("--ld-path=",.joined, attributes:[.helpHidden,.doesNotAffectIncrementalBuild,.argumentIsPath], helpText:"Specifies the path to the linker to be used")
534
535
publicstaticletlibc:Option=Option("-libc",.separate, attributes:[], helpText:"libc runtime library to use")
publicstaticletlibraryLevel:Option=Option("-library-level",.separate, attributes:[.helpHidden,.frontend,.moduleInterface], metaVar:"<level>", helpText:"Library distribution level 'api', 'spi' or 'other' (the default)")
@@ -758,7 +759,7 @@ extension Option {
758
759
publicstaticletuseInterfaceForModule:Option=Option("-use-interface-for-module",.separate, attributes:[.noDriver], metaVar:"<name>", helpText:"Prefer loading these modules via interface")
759
760
publicstaticletuseInterfaceForModule_:Option=Option("--use-interface-for-module",.separate, alias:Option.useInterfaceForModule, attributes:[.noDriver], metaVar:"<name>", helpText:"Prefer loading these modules via interface")
760
761
publicstaticletuseJit:Option=Option("-use-jit",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Register Objective-C classes as if the JIT were in use")
761
-
publicstaticletuseLd:Option=Option("-use-ld=",.joined, attributes:[.doesNotAffectIncrementalBuild], helpText:"Specifies the linker to be used")
762
+
publicstaticletuseLd:Option=Option("-use-ld=",.joined, attributes:[.doesNotAffectIncrementalBuild], helpText:"Specifies the flavor of the linker to be used")
762
763
publicstaticletuseMalloc:Option=Option("-use-malloc",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Allocate internal data structures using malloc (for memory debugging)")
763
764
publicstaticletuseStaticResourceDir:Option=Option("-use-static-resource-dir",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Use resources in the static resource directory")
764
765
publicstaticletuseTabs:Option=Option("-use-tabs",.flag, attributes:[.noInteractive,.noBatch,.indent], helpText:"Use tabs for indentation.", group:.codeFormatting)
0 commit comments