mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-09 23:29:03 +00:00
Sync clang_options_data.zig with update_clang_options
Some of the recent c++ related options were added to update_clang_options but didn't make it into clang_options_data.zig
This commit is contained in:
parent
874b4618ca
commit
cc7c670851
1 changed files with 32 additions and 4 deletions
|
|
@ -2554,7 +2554,14 @@ flagpd1("femulated-tls"),
|
|||
flagpd1("fencode-extended-block-signature"),
|
||||
sepd1("ferror-limit"),
|
||||
flagpd1("fescaping-block-tail-calls"),
|
||||
flagpd1("fexceptions"),
|
||||
.{
|
||||
.name = "fexceptions",
|
||||
.syntax = .flag,
|
||||
.zig_equivalent = .exceptions,
|
||||
.pd1 = true,
|
||||
.pd2 = false,
|
||||
.psl = false,
|
||||
},
|
||||
flagpd1("fexperimental-isel"),
|
||||
flagpd1("fexperimental-new-constant-interpreter"),
|
||||
flagpd1("fexperimental-new-pass-manager"),
|
||||
|
|
@ -2758,7 +2765,14 @@ flagpd1("fno-elide-type"),
|
|||
flagpd1("fno-eliminate-unused-debug-symbols"),
|
||||
flagpd1("fno-emulated-tls"),
|
||||
flagpd1("fno-escaping-block-tail-calls"),
|
||||
flagpd1("fno-exceptions"),
|
||||
.{
|
||||
.name = "fno-exceptions",
|
||||
.syntax = .flag,
|
||||
.zig_equivalent = .no_exceptions,
|
||||
.pd1 = true,
|
||||
.pd2 = false,
|
||||
.psl = false,
|
||||
},
|
||||
flagpd1("fno-experimental-isel"),
|
||||
flagpd1("fno-experimental-new-pass-manager"),
|
||||
flagpd1("fno-fast-math"),
|
||||
|
|
@ -2847,7 +2861,14 @@ flagpd1("fno-rewrite-includes"),
|
|||
flagpd1("fno-ropi"),
|
||||
flagpd1("fno-rounding-math"),
|
||||
flagpd1("fno-rtlib-add-rpath"),
|
||||
flagpd1("fno-rtti"),
|
||||
.{
|
||||
.name = "fno-rtti",
|
||||
.syntax = .flag,
|
||||
.zig_equivalent = .no_rtti,
|
||||
.pd1 = true,
|
||||
.pd2 = false,
|
||||
.psl = false,
|
||||
},
|
||||
flagpd1("fno-rtti-data"),
|
||||
flagpd1("fno-rwpi"),
|
||||
flagpd1("fno-sanitize-address-poison-custom-array-cookie"),
|
||||
|
|
@ -2995,7 +3016,14 @@ flagpd1("fno-frontend-optimize"),
|
|||
flagpd1("fropi"),
|
||||
flagpd1("frounding-math"),
|
||||
flagpd1("frtlib-add-rpath"),
|
||||
flagpd1("frtti"),
|
||||
.{
|
||||
.name = "frtti",
|
||||
.syntax = .flag,
|
||||
.zig_equivalent = .rtti,
|
||||
.pd1 = true,
|
||||
.pd2 = false,
|
||||
.psl = false,
|
||||
},
|
||||
flagpd1("frwpi"),
|
||||
flagpd1("fsanitize-address-globals-dead-stripping"),
|
||||
flagpd1("fsanitize-address-poison-custom-array-cookie"),
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue