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
@@ -216,6 +216,7 @@ extension Option {
216
216
publicstaticletdisableRequirementMachineLoopNormalization:Option=Option("-disable-requirement-machine-loop-normalization",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disable stronger minimization algorithm, for debugging only")
217
217
publicstaticletdisableRequirementMachineReuse:Option=Option("-disable-requirement-machine-reuse",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disable re-use of requirement machines for minimization, for debugging only")
218
218
publicstaticletdisableRoundTripDebugTypes:Option=Option("-disable-round-trip-debug-types",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disables verification of debug info mangling")
219
+
publicstaticletdisableSandbox:Option=Option("-disable-sandbox",.flag, attributes:[.frontend,.doesNotAffectIncrementalBuild], helpText:"Disable using the sandbox when executing subprocesses")
219
220
publicstaticletdisableSilOwnershipVerifier:Option=Option("-disable-sil-ownership-verifier",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Do not verify ownership invariants during SIL Verification ")
220
221
publicstaticletdisableSilPartialApply:Option=Option("-disable-sil-partial-apply",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Disable use of partial_apply in SIL generation")
221
222
publicstaticletdisableSilPerfOptzns:Option=Option("-disable-sil-perf-optzns",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Don't run SIL performance optimization passes")
@@ -604,7 +605,7 @@ extension Option {
604
605
publicstaticletO:Option=Option("-O",.flag, attributes:[.frontend,.moduleInterface], helpText:"Compile with optimizations", group:.O)
605
606
publicstaticleto:Option=Option("-o",.joinedOrSeparate, attributes:[.frontend,.noInteractive,.autolinkExtract,.moduleWrap,.indent,.argumentIsPath,.cacheInvariant], metaVar:"<file>", helpText:"Write output to <file>")
606
607
publicstaticletpackageDescriptionVersion:Option=Option("-package-description-version",.separate, attributes:[.helpHidden,.frontend,.moduleInterface], metaVar:"<vers>", helpText:"The version number to be applied on the input for the PackageDescription availability kind")
607
-
publicstaticletpackageName:Option=Option("-package-name",.separate, attributes:[.frontend], helpText:"Name of the package the module belongs to")
608
+
publicstaticletpackageName:Option=Option("-package-name",.separate, attributes:[.frontend,.moduleInterface], helpText:"Name of the package the module belongs to")
publicstaticletparseAsLibrary:Option=Option("-parse-as-library",.flag, attributes:[.frontend,.noInteractive], helpText:"Parse the input file(s) as libraries, not scripts")
610
611
publicstaticletparseSil:Option=Option("-parse-sil",.flag, attributes:[.frontend,.noInteractive], helpText:"Parse the input file as SIL code, not Swift source")
0 commit comments