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
+8
Original file line number
Diff line number
Diff line change
@@ -221,6 +221,7 @@ extension Option {
221
221
publicstaticletdisableRequirementMachineLoopNormalization:Option=Option("-disable-requirement-machine-loop-normalization",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disable stronger minimization algorithm, for debugging only")
222
222
publicstaticletdisableRequirementMachineReuse:Option=Option("-disable-requirement-machine-reuse",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disable re-use of requirement machines for minimization, for debugging only")
223
223
publicstaticletdisableRoundTripDebugTypes:Option=Option("-disable-round-trip-debug-types",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disables verification of debug info mangling")
224
+
publicstaticletdisableSandbox:Option=Option("-disable-sandbox",.flag, attributes:[.frontend,.doesNotAffectIncrementalBuild], helpText:"Disable using the sandbox when executing subprocesses")
224
225
publicstaticletdisableSilOwnershipVerifier:Option=Option("-disable-sil-ownership-verifier",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Do not verify ownership invariants during SIL Verification ")
225
226
publicstaticletdisableSilPartialApply:Option=Option("-disable-sil-partial-apply",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disable use of partial_apply in SIL generation")
226
227
publicstaticletdisableSilPerfOptzns:Option=Option("-disable-sil-perf-optzns",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Don't run SIL performance optimization passes")
@@ -327,6 +328,7 @@ extension Option {
327
328
publicstaticletemitObjcHeaderPath:Option=Option("-emit-objc-header-path",.separate, attributes:[.frontend,.noInteractive,.argumentIsPath,.supplementaryOutput,.cacheInvariant], metaVar:"<path>", helpText:"Emit an Objective-C header file to <path>")
328
329
publicstaticletemitObjcHeader:Option=Option("-emit-objc-header",.flag, attributes:[.frontend,.noInteractive,.supplementaryOutput], helpText:"Emit an Objective-C header file")
publicstaticletexperimentalHermeticSealAtLink:Option=Option("-experimental-hermetic-seal-at-link",.flag, attributes:[.helpHidden,.frontend], helpText:"Library code can assume that all clients are visible at linktime, and aggressively strip unused code")
456
458
publicstaticletexperimentalLazyTypecheck:Option=Option("-experimental-lazy-typecheck",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Type-check lazily as needed to produce requested outputs")
457
459
publicstaticletexperimentalOneWayClosureParams:Option=Option("-experimental-one-way-closure-params",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Enable experimental support for one-way closure parameters")
460
+
publicstaticletexperimentalPackageInterfaceLoad:Option=Option("-experimental-package-interface-load",.flag, attributes:[.helpHidden,.frontend], helpText:"Enables loading a package interface if in the same package specified with package-name")
458
461
publicstaticletExperimentalPerformanceAnnotations:Option=Option("-experimental-performance-annotations",.flag, attributes:[.helpHidden,.frontend], helpText:"Deprecated, has no effect")
publicstaticletplatformCCallingConvention:Option=Option("-experimental-platform-c-calling-convention",.separate, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Which calling convention is used to perform non-swift calls. Defaults to llvm's standard C calling convention.")
@@ -628,6 +631,7 @@ extension Option {
628
631
publicstaticletpchOutputDir:Option=Option("-pch-output-dir",.separate, attributes:[.helpHidden,.frontend,.argumentIsPath], helpText:"Directory to persist automatically created precompiled bridging headers")
629
632
publicstaticletplaceholderDependencyModuleMap:Option=Option("-placeholder-dependency-module-map-file",.separate, attributes:[.frontend,.noDriver], metaVar:"<path>", helpText:"Specify a JSON file containing information of external Swift module dependencies")
630
633
publicstaticletplaygroundHighPerformance:Option=Option("-playground-high-performance",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Omit instrumentation that has a high runtime performance impact")
634
+
publicstaticletplaygroundOption:Option=Option("-playground-option",.separate, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Provide an option to the playground transform (if enabled)")
631
635
publicstaticletplayground:Option=Option("-playground",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Apply the playground semantics and transformation")
632
636
publicstaticletpluginPath:Option=Option("-plugin-path",.separate, attributes:[.frontend,.argumentIsPath], helpText:"Add directory to the plugin search path", group:.pluginSearch)
0 commit comments