scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit dbe2170b3140a6719b908f380c6a36594f6f4731
parent 1fb593952e92d1a42453c46b97048877505b82f9
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 24 Jan 2025 10:01:40 +0100

libmach/elf: Use GNU names instead of SUN names

Old Sun is dead.

Diffstat:
Minclude/bits/scc/elf/elfshdr.h | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/include/bits/scc/elf/elfshdr.h b/include/bits/scc/elf/elfshdr.h @@ -34,9 +34,9 @@ #define SHT_GNU_LIBLIST 0x6ffffff7 /* libraries to be prelinked */ #define SHT_SUNW_move 0x6ffffffa /* inf for partially init'ed symbols */ #define SHT_SUNW_syminfo 0x6ffffffc /* ad symbol information */ -#define SHT_SUNW_verdef 0x6ffffffd /* symbol versioning inf */ -#define SHT_SUNW_verneed 0x6ffffffe /* symbol versioning req */ -#define SHT_SUNW_versym 0x6fffffff /* symbol versioning table */ +#define SHT_GNU_VERDEF 0x6ffffffd /* symbol versioning inf */ +#define SHT_GNU_VERNEED 0x6ffffffe /* symbol versioning req */ +#define SHT_GNU_VERSYM 0x6fffffff /* symbol versioning table */ #define SHT_HIOS 0x6fffffff /* section header types */ #define SHT_LOPROC 0x70000000 /* reserved range for processor */ #define SHT_HIPROC 0x7fffffff /* specific section header types */