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
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -586,6 +586,7 @@ extension Option {
586
586
publicstaticletstaticStdlib:Option=Option("-static-stdlib",.flag, attributes:[.doesNotAffectIncrementalBuild], helpText:"Statically link the Swift standard library")
587
587
publicstaticlet`static`:Option=Option("-static",.flag, attributes:[.frontend,.noInteractive,.moduleInterface], helpText:"Make this module statically linkable and make the output of -emit-library a static library.")
588
588
publicstaticletstatsOutputDir:Option=Option("-stats-output-dir",.separate, attributes:[.helpHidden,.frontend,.argumentIsPath], helpText:"Directory to write unified compilation-statistics files to")
589
+
publicstaticletstrictConcurrency:Option=Option("-strict-concurrency=",.joined, attributes:[.frontend], helpText:"Specify the how strict concurrency checking will be. The value may be 'off' (most 'Sendable' checking is disabled), 'limited' ('Sendable' checking is enabled in code that uses the concurrency model, or 'on' ('Sendable' and other checking is enabled for all code in the module)")
589
590
publicstaticletsupplementaryOutputFileMap:Option=Option("-supplementary-output-file-map",.separate, attributes:[.frontend,.noDriver], helpText:"Specify supplementary outputs in a file rather than on the command line")
590
591
publicstaticletsuppressStaticExclusivitySwap:Option=Option("-suppress-static-exclusivity-swap",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Suppress static violations of exclusive access with swap()")
591
592
publicstaticletsuppressWarnings:Option=Option("-suppress-warnings",.flag, attributes:[.frontend], helpText:"Suppress all warnings")
0 commit comments