blob: 8d8740945ed755985abe8d7cf029e58e444a8c2a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
ARCH="$1"
if [ -z "$ARCH" ]; then
ARCH=$(uname -m)
fi
JIT="src/compile/compile.c"
NOJIT="src/compile/nocompile.c"
case "$ARCH" in
x86_64) echo "$JIT" ;;
*) echo "$NOJIT" ;;
esac
|