diff options
Diffstat (limited to 'tools/update_clang_options.zig')
| -rw-r--r-- | tools/update_clang_options.zig | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/update_clang_options.zig b/tools/update_clang_options.zig index d261b5ee33..f1656546f0 100644 --- a/tools/update_clang_options.zig +++ b/tools/update_clang_options.zig @@ -353,6 +353,26 @@ const known_options = [_]KnownOpt{ .ident = "no_stack_check", }, .{ + .name = "stack-protector", + .ident = "stack_protector", + }, + .{ + .name = "fstack-protector", + .ident = "stack_protector", + }, + .{ + .name = "fno-stack-protector", + .ident = "no_stack_protector", + }, + .{ + .name = "fstack-protector-strong", + .ident = "stack_protector", + }, + .{ + .name = "fstack-protector-all", + .ident = "stack_protector", + }, + .{ .name = "MD", .ident = "dep_file", }, |
