From 5846f9dd9c80cc1db52984323d445874c69fb766 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Tue, 15 Apr 2025 18:22:07 -0400 Subject: Change compilation configuration so Tomo is fully capable of running locally from the build directory, including with TCC. --- local-tomo | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 local-tomo (limited to 'local-tomo') diff --git a/local-tomo b/local-tomo new file mode 100755 index 00000000..f6548058 --- /dev/null +++ b/local-tomo @@ -0,0 +1,12 @@ +#!/bin/sh +here="$(realpath "$(dirname "$0")")" +if [ ! -e "$here/build/bin/tomo" ]; then + echo "Tomo hasn't been compiled yet! Run \`make\` to compile it!" + exit 1; +fi + +PATH="$here/build/bin:$PATH" \ +LD_LIBRARY_PATH="$here/build/lib:$LD_LIBRARY_PATH" \ +LIBRARY_PATH="$here/build/lib:$LIBRARY_PATH" \ +C_INCLUDE_PATH="$here/build/include:$C_INCLUDE_PATH" \ +tomo "$@" -- cgit v1.2.3