aboutsummaryrefslogtreecommitdiff
path: root/tools/process_headers.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-06-19 14:12:30 -0700
committerJacob Young <jacobly0@users.noreply.github.com>2023-06-20 12:55:38 -0400
commitcdcfd15d3c7b573dcba21b64ffdf982e26524e50 (patch)
tree6367af08dfc16dd5ec496620f4eee11ade7a85f4 /tools/process_headers.zig
parent928c4c9bd303804b598df33518156a88edbb1a3a (diff)
downloadzig-cdcfd15d3c7b573dcba21b64ffdf982e26524e50.tar.gz
zig-cdcfd15d3c7b573dcba21b64ffdf982e26524e50.zip
musl: deal with zig rename of i386 to x86
musl uses "i386" for this while Zig has switched to "x86".
Diffstat (limited to 'tools/process_headers.zig')
-rw-r--r--tools/process_headers.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/process_headers.zig b/tools/process_headers.zig
index a7abcb0297..79ec3e7d03 100644
--- a/tools/process_headers.zig
+++ b/tools/process_headers.zig
@@ -208,7 +208,7 @@ const musl_targets = [_]LibCTarget{
.abi = MultiAbi.musl,
},
LibCTarget{
- .name = "x86",
+ .name = "i386",
.arch = MultiArch{ .specific = .x86 },
.abi = MultiAbi.musl,
},