aboutsummaryrefslogtreecommitdiff
path: root/scripts
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
parent57f6b41047e95374701ee276248f0f8615168450 (diff)
downloadejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.tar.gz
ejit-f5c729ea59d227a507f83bd94d07f4366b46d72b.zip
start supporting 32bit arches
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/gen-tests10
-rw-r--r--scripts/makefile21
-rwxr-xr-xscripts/select-compile3
3 files changed, 17 insertions, 17 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
diff --git a/scripts/makefile b/scripts/makefile
index 3f1e119..3a4f200 100644
--- a/scripts/makefile
+++ b/scripts/makefile
@@ -20,7 +20,7 @@ PREPROCESS := -E
LLVM ?= 0
BUILD := build
-all: ejit.o
+all: libejit.a
# default values, overwrite if/when needed
CROSS_COMPILE :=
@@ -35,8 +35,7 @@ COMPILER != [ "$(LLVM)" != "0" ] \
OBFLAGS := -g
-# interpreter is allowed to have uninitialized values
-WARNFLAGS := -Wall -Wextra -Wno-maybe-uninitialized
+WARNFLAGS := -Wall -Wextra
COMPILE_FLAGS := $(CFLAGS) $(WARNFLAGS) $(OPTFLAGS) $(LTOFLAGS) \
$(OBFLAGS) $(ASSERTFLAGS) $(DEBUGFLAGS)
@@ -58,19 +57,19 @@ COMPILE_EJIT = $(COMPILE) $(EJIT_FLAGS)
-include deps.mk
-ejit.o: $(EJIT_OBJS)
- ld -relocatable $(EJIT_OBJS) -o $@
+libejit.a: $(EJIT_OBJS)
+ $(CROSS_COMPILE)ar rcs libejit.a $(EJIT_OBJS)
examples: examples/loop examples/fib examples/matrix_mult
-examples/matrix_mult: examples/matrix_mult.c ejit.o
- $(COMPILE_EJIT) examples/matrix_mult.c ejit.o -o $@
+examples/matrix_mult: examples/matrix_mult.c libejit.a
+ $(COMPILE_EJIT) examples/matrix_mult.c libejit.a -o $@
-examples/loop: examples/loop.c ejit.o
- $(COMPILE_EJIT) examples/loop.c ejit.o -o $@
+examples/loop: examples/loop.c libejit.a
+ $(COMPILE_EJIT) examples/loop.c libejit.a -o $@
-examples/fib: examples/fib.c ejit.o
- $(COMPILE_EJIT) examples/fib.c ejit.o -o $@
+examples/fib: examples/fib.c libejit.a
+ $(COMPILE_EJIT) examples/fib.c libejit.a -o $@
# might lint some common things twice
.PHONY:
diff --git a/scripts/select-compile b/scripts/select-compile
index 8d87409..fca7350 100755
--- a/scripts/select-compile
+++ b/scripts/select-compile
@@ -9,6 +9,7 @@ JIT="src/compile/compile.c"
NOJIT="src/compile/nocompile.c"
case "$ARCH" in
- x86_64) echo "$JIT" ;;
+ amd64) echo "$JIT" ;;
+ x86*) echo "$JIT" ;;
*) echo "$NOJIT" ;;
esac