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
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -586,7 +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
+
publicstaticletstrictConcurrency:Option=Option("-strict-concurrency=",.joined, attributes:[.frontend], helpText:"Specify the how strict concurrency checking will be. The value may be 'minimal' (most 'Sendable' checking is disabled), 'targeted' ('Sendable' checking is enabled in code that uses the concurrency model, or 'complete' ('Sendable' and other checking is enabled for all code in the module)")
590
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")
591
591
publicstaticletsuppressStaticExclusivitySwap:Option=Option("-suppress-static-exclusivity-swap",.flag, attributes:[.helpHidden,.frontend,.noDriver], helpText:"Suppress static violations of exclusive access with swap()")
592
592
publicstaticletsuppressWarnings:Option=Option("-suppress-warnings",.flag, attributes:[.frontend], helpText:"Suppress all warnings")
0 commit comments