From 6d819506ea9b5039fac04d8208bad410f1673203 Mon Sep 17 00:00:00 2001 From: Alejandro Cabeza Romero Date: Fri, 22 May 2026 11:51:24 +0200 Subject: [PATCH] Fix missing string formatting part. --- .github/resources/witness-generator/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/resources/witness-generator/Makefile b/.github/resources/witness-generator/Makefile index f53c864..7d26905 100644 --- a/.github/resources/witness-generator/Makefile +++ b/.github/resources/witness-generator/Makefile @@ -65,7 +65,7 @@ $(BIN): $(COMMON_OBJS) $(LIB): $(LIB_OBJS) ld -r -o $(LOCAL_OBJ) $(filter-out fr.o,$^) - $(OBJCOPY) $(foreach s,$(PUBLIC_SYMS),--keep-global-symbol=$(s)) $(LOCAL_OBJ) + $(OBJCOPY) $(foreach sym,$(PUBLIC_SYMS),--keep-global-symbol=$(SYM_PREFIX)$(sym)) $(LOCAL_OBJ) ar rcs $@ fr.o $(LOCAL_OBJ) rm $(LOCAL_OBJ)