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
+6
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@ extension Option {
60
60
publicstaticletbsdk:Option=Option("-bsdk",.joinedOrSeparate, attributes:[.noDriver,.argumentIsPath], helpText:"path to the baseline SDK to import frameworks")
publicstaticletbypassBatchModeChecks:Option=Option("-bypass-batch-mode-checks",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Bypass checks for batch-mode errors.")
63
+
publicstaticletbypassResilience:Option=Option("-bypass-resilience-checks",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Ignore all checks for module resilience.")
publicstaticletcacheDisableReplay:Option=Option("-cache-disable-replay",.flag, attributes:[.frontend], helpText:"Skip loading the compilation result from cache")
65
66
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")
@@ -74,6 +75,7 @@ extension Option {
74
75
publicstaticletclangHeaderExposeModule:Option=Option("-clang-header-expose-module",.separate, attributes:[.helpHidden,.frontend,.noDriver], metaVar:"<imported-module-name>=<generated-header-name>", helpText:"Allow the compiler to assume that APIs from the specified module are exposed to C/C++/Objective-C in another generated header, so that APIs in the current module that depend on declarations from the specified module can be exposed in the generated header.")
75
76
publicstaticletclangIncludeTreeRoot:Option=Option("-clang-include-tree-root",.separate, attributes:[.helpHidden,.frontend,.noDriver], metaVar:"<cas-id>", helpText:"Clang Include Tree CASID")
76
77
publicstaticletclangIncludeTree:Option=Option("-clang-include-tree",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Use clang include tree")
publicstaticletclangTarget:Option=Option("-clang-target",.separate, attributes:[.frontend], helpText:"Separately set the target we should use for internal Clang instance")
78
80
publicstaticletcodeCompleteCallPatternHeuristics:Option=Option("-code-complete-call-pattern-heuristics",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Use heuristics to guess whether we want call pattern completions")
79
81
publicstaticletcodeCompleteInitsInPostfixExpr:Option=Option("-code-complete-inits-in-postfix-expr",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Include initializers when completing a postfix expression")
@@ -431,6 +433,7 @@ extension Option {
431
433
publicstaticletenforceExclusivityEQ:Option=Option("-enforce-exclusivity=",.joined, attributes:[.frontend,.moduleInterface], metaVar:"<enforcement>", helpText:"Enforce law of exclusivity")
432
434
publicstaticletentryPointFunctionName:Option=Option("-entry-point-function-name",.separate, attributes:[.helpHidden,.frontend,.noDriver], metaVar:"<string>", helpText:"Name of the entry point function")
433
435
publicstaticletexperimentalAllowModuleWithCompilerErrors:Option=Option("-experimental-allow-module-with-compiler-errors",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Attempt to output .swiftmodule, regardless of compilation errors")
436
+
publicstaticletexperimentalBridgingHeaderAsModule:Option=Option("-experimental-bridging-header-as-module",.flag, attributes:[.frontend], helpText:"Import bridging header as module")
publicstaticletexperimentalCxxStdlib:Option=Option("-experimental-cxx-stdlib",.separate, attributes:[.helpHidden], helpText:"C++ standard library to use; forwarded to Clang's -stdlib flag")
436
439
publicstaticletemitModuleSeparately:Option=Option("-experimental-emit-module-separately",.flag, attributes:[.helpHidden], helpText:"Emit module files as a distinct job")
0 commit comments