diff options
| author | Alex Rønne Petersen <alex@alexrp.com> | 2025-10-05 16:59:05 +0200 |
|---|---|---|
| committer | Alex Rønne Petersen <alex@alexrp.com> | 2025-10-06 01:28:56 +0200 |
| commit | ddc815e3d88d32b8f3df0610ee59c8d34b8ff8eb (patch) | |
| tree | 4fb46f586dc07351b0e98d902d3cae847d86b0b0 /test/tests.zig | |
| parent | bd23e9a744b3a43aab468b9f5e24b4c63e7c25d3 (diff) | |
| download | zig-ddc815e3d88d32b8f3df0610ee59c8d34b8ff8eb.tar.gz zig-ddc815e3d88d32b8f3df0610ee59c8d34b8ff8eb.zip | |
drop support for powerpc64 ELF v1
* ELF v1 on powerpc64 is only barely kept on life support in a couple of Linux
distros. I don't anticipate that this will last much longer.
* Most of the Linux world has moved to powerpc64le which requires ELF v2.
* Some Linux distros have even started supporting powerpc64 with ELF v2.
* The BSD world has long since moved to ELF v2.
* We have no actual linking support for ELF v1.
* ELF v1 had confused DWARF register mappings which is becoming a problem in
our DWARF code in std.debug.
It's clear that ELF v1 is on its way out, and we never fully supported it
anyway. So let's not waste any time or energy on it going forward.
closes #5927
Diffstat (limited to 'test/tests.zig')
| -rw-r--r-- | test/tests.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/tests.zig b/test/tests.zig index 8e46fece21..fb449d5bf4 100644 --- a/test/tests.zig +++ b/test/tests.zig @@ -801,7 +801,7 @@ const test_targets = blk: { .link_libc = true, .extra_target = true, }, - // Requires ELFv1 linker support. + // glibc's build-many-glibcs.py currently only builds this target for ELFv1. // .{ // .target = .{ // .cpu_arch = .powerpc64, |
