Skip to content

Commit 7109e46

Browse files
committed
llvm: Use muslabin32/muslabi64 environments in the target triple.
Closes #2909.
1 parent 9a59cff commit 7109e46

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/codegen/llvm.zig

+2-2
Original file line numberDiff line numberDiff line change
@@ -271,8 +271,8 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 {
271271
.wasi, .emscripten => "unknown",
272272
else => "musl",
273273
},
274-
.muslabin32 => "musl", // Should be muslabin32 in LLVM 20.
275-
.muslabi64 => "musl", // Should be muslabi64 in LLVM 20.
274+
.muslabin32 => "muslabin32",
275+
.muslabi64 => "muslabi64",
276276
.musleabi => "musleabi",
277277
.musleabihf => "musleabihf",
278278
.muslf32 => "muslf32",

0 commit comments

Comments
 (0)