diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-04-02 15:47:27 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-04-02 15:47:27 -0400 |
| commit | e4edc6d118e0e0cd3510bbe89ca4a292436bb82f (patch) | |
| tree | f2a90113d86d8157582e57a616b1bcfe2fedcb99 /tools | |
| parent | 4aa797b6bb3716759738e057e90ac607e81ce6e5 (diff) | |
| download | zig-e4edc6d118e0e0cd3510bbe89ca4a292436bb82f.tar.gz zig-e4edc6d118e0e0cd3510bbe89ca4a292436bb82f.zip | |
zig cc: respect -MF -MV -MD options
Zig disables its caching and forwards these args when any are provided.
see #4784
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/update_clang_options.zig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tools/update_clang_options.zig b/tools/update_clang_options.zig index b85d708470..d6192c93cf 100644 --- a/tools/update_clang_options.zig +++ b/tools/update_clang_options.zig @@ -194,6 +194,18 @@ const known_options = [_]KnownOpt{ .name = "mtune", .ident = "mcpu", }, + .{ + .name = "MD", + .ident = "dep_file", + }, + .{ + .name = "MV", + .ident = "dep_file", + }, + .{ + .name = "MF", + .ident = "dep_file", + }, }; const blacklisted_options = [_][]const u8{}; |
