guix: remove riscv exclusion from symbol check

This commit is contained in:
fanquake
2026-03-06 15:46:11 +00:00
parent 47b7a9f666
commit 19e99be011

View File

@@ -202,7 +202,7 @@ def check_exported_symbols(binary) -> bool:
if not symbol.exported:
continue
name = symbol.name
if binary.header.machine_type == lief.ELF.ARCH.RISCV or name in IGNORE_EXPORTS:
if name in IGNORE_EXPORTS:
continue
print(f'{filename}: export of symbol {name} not allowed!')
ok = False