authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-11-10 07:49:04+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2025-11-10 09:40:44+01:00
logf34b5ce28844cdf3ec66c1f6b9feb3bcdae6434c
tree1f5db0404e29061e018ffa7bf68ce24b399d1d5f
parent255fc4403686f5f88b58241e19728be0f83e7643
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

std.Target.DynamicLinker: define standard paths for alpha, microblaze, sh on netbsd and openbsd


1 files changed, 8 insertions(+), 0 deletions(-)

lib/std/Target.zig+8
...@@ -2680,16 +2680,20 @@ pub const DynamicLinker = struct {...@@ -2680,16 +2680,20 @@ pub const DynamicLinker = struct {
2680 },2680 },
26812681
2682 .netbsd => switch (cpu.arch) {2682 .netbsd => switch (cpu.arch) {
2683 .alpha,
2683 .arm,2684 .arm,
2684 .armeb,2685 .armeb,
2685 .aarch64,2686 .aarch64,
2686 .aarch64_be,2687 .aarch64_be,
2688 .hppa,
2687 .m68k,2689 .m68k,
2688 .mips,2690 .mips,
2689 .mipsel,2691 .mipsel,
2690 .mips64,2692 .mips64,
2691 .mips64el,2693 .mips64el,
2692 .powerpc,2694 .powerpc,
2695 .sh,
2696 .sheb,
2693 .sparc,2697 .sparc,
2694 .sparc64,2698 .sparc64,
2695 .x86,2699 .x86,
...@@ -2699,13 +2703,17 @@ pub const DynamicLinker = struct {...@@ -2699,13 +2703,17 @@ pub const DynamicLinker = struct {
2699 },2703 },
27002704
2701 .openbsd => switch (cpu.arch) {2705 .openbsd => switch (cpu.arch) {
2706 .alpha,
2702 .arm,2707 .arm,
2703 .aarch64,2708 .aarch64,
2709 .hppa,
2704 .mips64,2710 .mips64,
2705 .mips64el,2711 .mips64el,
2706 .powerpc,2712 .powerpc,
2707 .powerpc64,2713 .powerpc64,
2708 .riscv64,2714 .riscv64,
2715 .sh,
2716 .sheb,
2709 .sparc64,2717 .sparc64,
2710 .x86,2718 .x86,
2711 .x86_64,2719 .x86_64,