diff options
| author | Michael Dusan <michael.dusan@gmail.com> | 2021-04-20 12:11:20 -0400 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2021-04-20 16:19:59 -0400 |
| commit | 0c6dfa6f0c057a7517f889e360a985cb62a2d91f (patch) | |
| tree | e6b8a2c4537a1e5e8b9ac9169022e8e2f4e2326f /tools | |
| parent | 10f2d6278946485f057f65bbb3c094a6fcde1adf (diff) | |
| download | zig-0c6dfa6f0c057a7517f889e360a985cb62a2d91f.tar.gz zig-0c6dfa6f0c057a7517f889e360a985cb62a2d91f.zip | |
target: drop `ppc32` and prefer `ppc`
- original PR #7949 (incorrectly) patched a generated-file and changes
have subsequently been lost/overwritten
- fix #7947 in a different way: drop `ppc32` because `ppc` already exists
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/update_cpu_features.zig | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/update_cpu_features.zig b/tools/update_cpu_features.zig index 7e3c636c31..15143dfca4 100644 --- a/tools/update_cpu_features.zig +++ b/tools/update_cpu_features.zig @@ -663,6 +663,12 @@ const llvm_targets = [_]LlvmTarget{ .zig_name = "powerpc", .llvm_name = "PowerPC", .td_name = "PPC.td", + .feature_overrides = &.{ + .{ + .llvm_name = "ppc32", + .omit = true, + }, + }, }, .{ .zig_name = "riscv", |
