diff options
| author | Veikka Tuominen <git@vexu.eu> | 2022-02-04 19:55:32 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-02-05 02:59:13 -0500 |
| commit | 7d04ab1f14269b25a7ac03c3f787b3f3ee3453c3 (patch) | |
| tree | 098412327e45adf16215b2b700c5182dd2975fb2 /src/main.zig | |
| parent | 01d48e55a5aa683828dcb88fee2d811c8262d3e9 (diff) | |
| download | zig-7d04ab1f14269b25a7ac03c3f787b3f3ee3453c3.tar.gz zig-7d04ab1f14269b25a7ac03c3f787b3f3ee3453c3.zip | |
std.process: add option to support single quotes to ArgIteratorGeneral
Diffstat (limited to 'src/main.zig')
| -rw-r--r-- | src/main.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.zig b/src/main.zig index bd25c5d234..bbdb948c90 100644 --- a/src/main.zig +++ b/src/main.zig @@ -4230,7 +4230,7 @@ pub const ClangArgIterator = struct { }; } - const ArgIteratorResponseFile = process.ArgIteratorGeneral(.{ .comments_supported = true }); + const ArgIteratorResponseFile = process.ArgIteratorGeneral(.{ .comments = true, .single_quotes = true }); /// Initialize the arguments from a Response File. "*.rsp" fn initArgIteratorResponseFile(allocator: Allocator, resp_file_path: []const u8) !ArgIteratorResponseFile { |
