From 19d8888ac6ce2530243ab15267ca8e80b81a7fd5 Mon Sep 17 00:00:00 2001 From: Ranulfo Raphael Date: Mon, 24 Jun 2024 18:45:28 -0300 Subject: [PATCH] libtest/dl12: Fix build issue Updated from ld to gcc in the build script to ensure consistency in ABI flags during the creation of incrementally linked objects. Update #5053 --- spec/build/testsuites/libtests/dl12.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/build/testsuites/libtests/dl12.yml b/spec/build/testsuites/libtests/dl12.yml index 6d7a51ba37..a29ab3aac2 100644 --- a/spec/build/testsuites/libtests/dl12.yml +++ b/spec/build/testsuites/libtests/dl12.yml @@ -10,7 +10,7 @@ do-build: | objs.append(self.cc(bld, bic, path + "dl12-o1.c")) objs.append(self.cc(bld, bic, path + "dl12-o2.c")) def ld(self, bld, bic, flags, source, target): - bld(rule="${LD} " + flags + " ${SRC} -o ${TGT}", + bld(rule="${CC} ${ABI_FLAGS} " + flags + " ${SRC} -o ${TGT}", source=source, target=target) return target