File tree Expand file tree Collapse file tree 3 files changed +0
-9
lines changed
SwiftSyntaxDevUtils/Sources/swift-syntax-dev-utils/common Expand file tree Collapse file tree 3 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ func hasEnvironmentVariable(_ name: String) -> Bool {
14
14
/// Modifies the build in the following ways
15
15
/// - Enables assertions even in release builds
16
16
/// - Removes the dependency of swift-syntax on os_log
17
- /// - Enables raw syntax validation (ie. implies `SWIFTSYNTAX_ENABLE_RAWSYNTAX_VALIDATION`)
18
- /// - Enables alternate token introspection (ie. implies `SWIFTPARSER_ENABLE_ALTERNATE_TOKEN_INTROSPECTION`)
19
17
let buildScriptEnvironment = hasEnvironmentVariable ( " SWIFT_BUILD_SCRIPT_ENVIRONMENT " )
20
18
21
19
/// Check that the layout of the syntax tree is correct.
Original file line number Diff line number Diff line change @@ -39,9 +39,6 @@ struct BuildArguments: ParsableArguments {
39
39
)
40
40
var multirootDataFile : URL ?
41
41
42
- @Flag ( help: " Disable sandboxes when building with SwiftPM " )
43
- var disableSandbox : Bool = false
44
-
45
42
@Flag ( help: " Build in release mode. " )
46
43
var release : Bool = false
47
44
Original file line number Diff line number Diff line change @@ -62,10 +62,6 @@ extension BuildCommand {
62
62
args += [ " --multiroot-data-file " , multirootDataFile]
63
63
}
64
64
65
- if arguments. disableSandbox {
66
- args += [ " --disable-sandbox " ]
67
- }
68
-
69
65
if arguments. verbose {
70
66
args += [ " --verbose " ]
71
67
}
You can’t perform that action at this time.
0 commit comments