zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 388c0918d65387d6be3efdf0c0c0d38452a71a07 (tree)
parent 9a578b7b483fe7114e4b84ccf2c8180ac2f6709f
Author: Alex Rønne Petersen <alex@alexrp.com>
Date:   Sat, 23 May 2026 08:51:14 +0200

std.Target: add standard dynamic linker paths for or1k

Diffstat:
Mlib/std/Target.zig | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/lib/std/Target.zig b/lib/std/Target.zig @@ -2554,6 +2554,7 @@ pub const DynamicLinker = struct { .m68k, .microblaze, .microblazeel, + .or1k, .powerpc64, .powerpc64le, .s390x, @@ -2639,6 +2640,7 @@ pub const DynamicLinker = struct { .aarch64, .aarch64_be, + .or1k, => |arch| if (abi == .gnu) initFmt("/lib/ld-linux-{s}.so.1", .{@tagName(arch)}) else none, // TODO: `-be` architecture support.