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
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -30,6 +30,7 @@ extension Option {
30
30
publicstaticletbypassBatchModeChecks:Option=Option("-bypass-batch-mode-checks",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Bypass checks for batch-mode errors.")
31
31
publicstaticletcandidateModuleFile:Option=Option("-candidate-module-file",.separate, attributes:[.helpHidden,.frontend,.noDriver], metaVar:"<path>", helpText:"Specify Swift module may be ready to use for an interface")
32
32
publicstaticletcheckOnoneCompleteness:Option=Option("-check-onone-completeness",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Print errors if the compile OnoneSupport module is missing symbols")
33
+
publicstaticletclangTarget:Option=Option("-clang-target",.separate, attributes:[.frontend], helpText:"Separately set the target we should use for internal Clang instance")
33
34
publicstaticletcodeCompleteCallPatternHeuristics:Option=Option("-code-complete-call-pattern-heuristics",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Use heuristics to guess whether we want call pattern completions")
34
35
publicstaticletcodeCompleteInitsInPostfixExpr:Option=Option("-code-complete-inits-in-postfix-expr",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Include initializers when completing a postfix expression")
35
36
publicstaticletcolorDiagnostics:Option=Option("-color-diagnostics",.flag, attributes:[.frontend,.doesNotAffectIncrementalBuild], helpText:"Print diagnostics in color")
@@ -75,6 +76,7 @@ extension Option {
75
76
publicstaticletdisableBatchMode:Option=Option("-disable-batch-mode",.flag, attributes:[.helpHidden,.frontend,.noInteractive], helpText:"Disable combining frontend jobs into batches")
76
77
publicstaticletdisableBridgingPch:Option=Option("-disable-bridging-pch",.flag, attributes:[.helpHidden], helpText:"Disable automatic generation of bridging PCH files")
77
78
publicstaticletdisableBuildingInterface:Option=Option("-disable-building-interface",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disallow building binary module from textual interface")
79
+
publicstaticletdisableClangTarget:Option=Option("-disable-clang-target",.flag, attributes:[], helpText:"Disable a separately specified target triple for Clang instance to use")
78
80
publicstaticletdisableClangimporterSourceImport:Option=Option("-disable-clangimporter-source-import",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disable ClangImporter and forward all requests straight the DWARF importer.")
79
81
publicstaticletdisableConcreteTypeMetadataMangledNameAccessors:Option=Option("-disable-concrete-type-metadata-mangled-name-accessors",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disable concrete type metadata access by mangled name")
80
82
publicstaticletdisableConformanceAvailabilityErrors:Option=Option("-disable-conformance-availability-errors",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Diagnose conformance availability violations as warnings")
0 commit comments