#!/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