From f8fc305cbd2d8862cf325c004cc7e31640eab256 Mon Sep 17 00:00:00 2001 From: Hansung Kim Date: Mon, 23 Jan 2023 18:01:18 -0800 Subject: [PATCH] Add sourceme.sh Needed to set env variables for a custom setup where the prebuilt binaries are located outside of /opt. --- sourceme.sh | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 sourceme.sh diff --git a/sourceme.sh b/sourceme.sh new file mode 100644 index 00000000..bb3b4924 --- /dev/null +++ b/sourceme.sh @@ -0,0 +1,6 @@ +export LLVM_PREFIX=/scratch/hansung/build/vortex-toolchain-prebuilt/llvm-riscv/ +export POCL_CC_PATH=/scratch/hansung/build/vortex-toolchain-prebuilt/pocl/compiler +export POCL_RT_PATH=/scratch/hansung/build/vortex-toolchain-prebuilt/pocl/runtime +export VERILATOR_ROOT=/scratch/hansung/build/vortex-toolchain-prebuilt/verilator +export RISCV_TOOLCHAIN_PATH=/scratch/hansung/build/vortex-toolchain-prebuilt +export PATH="/scratch/hansung/build/vortex-toolchain-prebuilt/verilator/bin:$PATH"