aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-06-24 20:33:56 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-06-24 20:33:56 +0300
commitfe3d9c7dfbe4190ecf0919abe474e4da4c019566 (patch)
tree91dd12b6a9980e5945e7dbde761afadd9d118d09 /scripts
parent5a4da8bac457f0e70e690a572eba9cf754e69a37 (diff)
downloadejit-fe3d9c7dfbe4190ecf0919abe474e4da4c019566.tar.gz
ejit-fe3d9c7dfbe4190ecf0919abe474e4da4c019566.zip
add initial compiler framework
Diffstat (limited to 'scripts')
-rw-r--r--scripts/makefile5
-rwxr-xr-xscripts/select-compile16
2 files changed, 16 insertions, 5 deletions
diff --git a/scripts/makefile b/scripts/makefile
index 484d04f..b8978f6 100644
--- a/scripts/makefile
+++ b/scripts/makefile
@@ -9,11 +9,6 @@ DEBUGFLAGS != [ "$(DEBUG)" != "0" ] \
&& echo "-DDEBUG=1" \
|| echo "-DNDEBUG=1"
-ASSERT ?= 1
-ASSERTFLAGS != [ "$(ASSERT)" != "0" ] \
- && echo "-DASSERT=1" \
- || echo
-
DEPFLAGS = -MT $@ -MMD -MP -MF $@.d
LINTFLAGS := -fsyntax-only
PREPROCESS := -E
diff --git a/scripts/select-compile b/scripts/select-compile
new file mode 100755
index 0000000..be8b40d
--- /dev/null
+++ b/scripts/select-compile
@@ -0,0 +1,16 @@
+#!/bin/sh
+
+ARCH="$1"
+if [ -z "$ARCH" ]; then
+ ARCH=$(uname -m)
+fi
+
+>&2 echo $ARCH
+
+JIT="src/compile/compile.c"
+NOJIT="src/compile/nocompile.c"
+
+case "$ARCH" in
+ x86_64) echo "$JIT" ;;
+ *) echo "$NOJIT" ;;
+esac