diff options
| author | Ryan Liptak <squeek502@hotmail.com> | 2020-03-27 23:23:56 -0700 |
|---|---|---|
| committer | Ryan Liptak <squeek502@hotmail.com> | 2020-03-27 23:32:01 -0700 |
| commit | b0b29b8a2fe57cb501248c1022a24092f4f56f82 (patch) | |
| tree | 5be4cbcad8dff6e3c186629b8b8229ea8c12df88 /tools | |
| parent | 12e1c6e21c1d21238450903ad7f8fa4ce52ee758 (diff) | |
| download | zig-b0b29b8a2fe57cb501248c1022a24092f4f56f82.tar.gz zig-b0b29b8a2fe57cb501248c1022a24092f4f56f82.zip | |
zig cc: Add support for -Xlinker, --for-linker, --for-linker=
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 94dee90142..f8d1987206 100644 --- a/tools/update_clang_options.zig +++ b/tools/update_clang_options.zig @@ -79,6 +79,18 @@ const known_options = [_]KnownOpt{ .ident = "wl", }, .{ + .name = "Xlinker", + .ident = "for_linker", + }, + .{ + .name = "for-linker", + .ident = "for_linker", + }, + .{ + .name = "for-linker=", + .ident = "for_linker", + }, + .{ .name = "E", .ident = "preprocess", }, |
