aboutsummaryrefslogtreecommitdiff
path: root/scripts/gen-tests
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-03-14 21:08:01 +0200
committerKimplul <kimi.h.kuparinen@gmail.com>2025-03-14 21:08:01 +0200
commitf5c729ea59d227a507f83bd94d07f4366b46d72b (patch)
tree70d1f242100cea09acd38a71ff8c821836117cfd /scripts/gen-tests
parent57f6b41047e95374701ee276248f0f8615168450 (diff)
downloadejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz
ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip
start supporting 32bit arches
Diffstat (limited to 'scripts/gen-tests')
-rwxr-xr-xscripts/gen-tests10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/gen-tests b/scripts/gen-tests
index 5d9e087..5521006 100755
--- a/scripts/gen-tests
+++ b/scripts/gen-tests
@@ -7,9 +7,9 @@ do
exe="tests/test-${src%.*}"
dep="tests/${exe}.d"
- echo "${PREFIX} += ${exe}" >> tests.mk
- echo "${dep}:" >> tests.mk
- echo "-include ${dep}" >> tests.mk
- echo "${exe}: ${s} ejit.o" >> tests.mk
- echo " \$(COMPILE_TEST) ${s} ejit.o -o ${exe}" >> tests.mk
+ echo "${PREFIX} += ${exe}" >> tests.mk
+ echo "${dep}:" >> tests.mk
+ echo "-include ${dep}" >> tests.mk
+ echo "${exe}: ${s} libejit.a" >> tests.mk
+ echo " \$(COMPILE_TEST) ${s} libejit.a -o ${exe}" >> tests.mk
done