aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2025-04-01 22:16:25 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2025-04-01 22:16:25 +0300
commit478c92b425eca53a0d884fb8f5dea8d769016858 (patch)
treed5d85feb1b796530429221d51ab88c8c7f1a0b55 /scripts
parent4135845b93d5c0eab23ad5da526b03a911878d67 (diff)
downloadejit-478c92b425eca53a0d884fb8f5dea8d769016858.tar.gz
ejit-478c92b425eca53a0d884fb8f5dea8d769016858.zip
expose sqrt
+ Requires linking with libm in some cases, which is fine I suppose, but kind of annoying
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen-tests2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/gen-tests b/scripts/gen-tests
index 5521006..deac247 100755
--- a/scripts/gen-tests
+++ b/scripts/gen-tests
@@ -11,5 +11,5 @@ do
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
+ echo " \$(COMPILE_TEST) ${s} libejit.a -o ${exe} -lm" >> tests.mk
done