Skip to content

Commit bf66f5f

Browse files
committed
sw/saris: Remove stub LLVM from makefile
1 parent c6156f7 commit bf66f5f

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

sw/saris/Makefile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,13 @@ all:
1111
# Environment #
1212
###############
1313

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
14+
# NOTE: the LLVM_BINROOT environment variable must point to a specific revision of PULP RISCV
15+
# LLVM 15 (see README.md). After compilation, you can set LLVM_BINROOT in your environment, this
16+
# 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+
1721
PYTHON3 ?= python3
1822

1923
SARISDIR ?= .

0 commit comments

Comments
 (0)