We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c6156f7 commit bf66f5fCopy full SHA for bf66f5f
sw/saris/Makefile
@@ -11,9 +11,13 @@ all:
11
# Environment #
12
###############
13
14
-# NOTE: This needs to be a specific revision of PULP RISCV LLVM 15:
15
-# TODO: add commit link here
16
-LLVM_BINROOT ?= /home/paulsc/dev/llvm-ssr/llvm-iis/install/bin
+# NOTE: the LLVM_BINROOT environment variable must point to a specific revision of PULP RISCV
+# LLVM 15 (see README.md). After compilation, you can set LLVM_BINROOT in your environment, this
+# makefile, or pass it on invocation of `make`.
17
+ifndef LLVM_BINROOT
18
+$(error LLVM_BINROOT is not set; please compile the SARIS version of LLVM 15 (see README.md) and set LLVM_BINROOT to its binary location.)
19
+endif
20
+
21
PYTHON3 ?= python3
22
23
SARISDIR ?= .
0 commit comments