diff options
| author | jacobly0 <jacobly0@users.noreply.github.com> | 2023-06-20 23:14:22 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-20 23:14:22 -0400 |
| commit | e2eabbbc5142f11defc56ad51cd5b8a5e97cdbda (patch) | |
| tree | cc1127bc0a31d50e35d6200c3824cdbbe83f8ebc /src/wasi_libc.zig | |
| parent | 8875efe54873b721cc3a6f6d83525b19d1c59ec3 (diff) | |
| parent | 09c7f1bd7c4410948a984f2f155a6e36ff6279fd (diff) | |
| download | zig-e2eabbbc5142f11defc56ad51cd5b8a5e97cdbda.tar.gz zig-e2eabbbc5142f11defc56ad51cd5b8a5e97cdbda.zip | |
Merge pull request #16098 from ziglang/musl-v1.2.4
update musl from v1.2.3 to v1.2.4
Diffstat (limited to 'src/wasi_libc.zig')
| -rw-r--r-- | src/wasi_libc.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wasi_libc.zig b/src/wasi_libc.zig index fae443dd84..566065dc6c 100644 --- a/src/wasi_libc.zig +++ b/src/wasi_libc.zig @@ -256,7 +256,7 @@ fn addCCArgs( want_O3: bool, ) error{OutOfMemory}!void { const target = comp.getTarget(); - const arch_name = musl.archName(target.cpu.arch); + const arch_name = musl.archNameHeaders(target.cpu.arch); const os_name = @tagName(target.os.tag); const triple = try std.fmt.allocPrint(arena, "{s}-{s}-musl", .{ arch_name, os_name }); const o_arg = if (want_O3) "-O3" else "-Os"; |
