From 19e99be011ba953a6df0c5866a034debe86925e4 Mon Sep 17 00:00:00 2001 From: fanquake Date: Fri, 6 Mar 2026 15:46:11 +0000 Subject: [PATCH] guix: remove riscv exclusion from symbol check --- contrib/guix/symbol-check.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/guix/symbol-check.py b/contrib/guix/symbol-check.py index d31d5aa83bc..86b7965277c 100755 --- a/contrib/guix/symbol-check.py +++ b/contrib/guix/symbol-check.py @@ -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