From b00c4e8bad81c6f3f2627fb1c6566e8469b59538 Mon Sep 17 00:00:00 2001 From: Tim Snyder Date: Thu, 19 May 2022 16:21:33 +0000 Subject: [PATCH] disable all the boosts for spike It's configure script is weird and you have to set three options to 'no' to disable boost otherwise it will fail to configure in the presence of conda's boost. We don't want or need the boost optional features of spike, so really disable it. --- scripts/build-toolchains.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-toolchains.sh b/scripts/build-toolchains.sh index 0b7881ca..0d472464 100755 --- a/scripts/build-toolchains.sh +++ b/scripts/build-toolchains.sh @@ -156,7 +156,7 @@ fi # disable boost explicitly for https://github.com/riscv-software-src/riscv-isa-sim/issues/834 # since we don't have it in our requirements -module_all riscv-isa-sim --prefix="${RISCV}" --with-boost=no +module_all riscv-isa-sim --prefix="${RISCV}" --with-boost=no --with-boost-asio=no --with-boost-regex=no # build static libfesvr library for linking into firesim driver (or others) echo '==> Installing libfesvr static library' module_make riscv-isa-sim libfesvr.a