diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2023-10-04 15:16:52 +0200 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-10-04 11:21:56 -0700 |
| commit | 8b4e3b6aee61a26e7229ea30728e6c5e31c7cd0b (patch) | |
| tree | c78414c59ad23d9dd24b8989cced5589203370a2 /tools | |
| parent | a306bfcd8eec166906ce2839bc7ff86ba6335376 (diff) | |
| download | zig-8b4e3b6aee61a26e7229ea30728e6c5e31c7cd0b.tar.gz zig-8b4e3b6aee61a26e7229ea30728e6c5e31c7cd0b.zip | |
comp: add support for -fdata-sections
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/update_clang_options.zig | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/update_clang_options.zig b/tools/update_clang_options.zig index 6616d5f077..b2e2fc1e86 100644 --- a/tools/update_clang_options.zig +++ b/tools/update_clang_options.zig @@ -333,6 +333,14 @@ const known_options = [_]KnownOpt{ .ident = "no_function_sections", }, .{ + .name = "fdata-sections", + .ident = "data_sections", + }, + .{ + .name = "fno-data-sections", + .ident = "no_data_sections", + }, + .{ .name = "fbuiltin", .ident = "builtin", }, |
