diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2020-03-25 19:32:12 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2020-03-25 19:32:12 -0400 |
| commit | e3fec6cce91a6ad5d63f78afe96649dc2aeea6a1 (patch) | |
| tree | 116c365a9ac67bab83a9aefe6cdc7085110baf69 /tools | |
| parent | 9dbfee49d7edfe1ff46383502a5778a0dfd51f18 (diff) | |
| download | zig-e3fec6cce91a6ad5d63f78afe96649dc2aeea6a1.tar.gz zig-e3fec6cce91a6ad5d63f78afe96649dc2aeea6a1.zip | |
zig cc: add detection for `-###`
it turns on --verbose-cc and --verbose-link
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/update_clang_options.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/update_clang_options.zig b/tools/update_clang_options.zig index 6fd50de92e..97be4978d2 100644 --- a/tools/update_clang_options.zig +++ b/tools/update_clang_options.zig @@ -150,6 +150,10 @@ const known_options = [_]KnownOpt{ .name = "T", .ident = "linker_script", }, + .{ + .name = "###", + .ident = "verbose_cmds", + }, }; const blacklisted_options = [_][]const u8{}; |
