#!/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 aarch64) echo "$JIT" ;; mipsel) echo "$JIT" ;; amd64) echo "$JIT" ;; x86*) echo "$JIT" ;; *) echo "$NOJIT" ;; esac