From ba9145b0b7af2a82c62f8dfa28807958af5d0c8d Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 7 Mar 2025 18:50:34 +0200 Subject: make code a bit more robust + Should be more difficult to make mistakes in the future, ejit can now automatically keep track of how many register slots are used and if 64 bit mode is required. Slight runtime overhead, but not too bad. --- scripts/makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'scripts/makefile') diff --git a/scripts/makefile b/scripts/makefile index 0b4f42b..3f1e119 100644 --- a/scripts/makefile +++ b/scripts/makefile @@ -61,7 +61,11 @@ COMPILE_EJIT = $(COMPILE) $(EJIT_FLAGS) ejit.o: $(EJIT_OBJS) ld -relocatable $(EJIT_OBJS) -o $@ -examples: examples/loop examples/fib +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/loop: examples/loop.c ejit.o $(COMPILE_EJIT) examples/loop.c ejit.o -o $@ -- cgit v1.2.3