From 95ae46f4f29029a82951e752407b3e23c90d29f3 Mon Sep 17 00:00:00 2001 From: David Biancolin Date: Thu, 12 Sep 2019 15:45:45 -0700 Subject: [PATCH] [sbt] Use tools/chisel3 not rocketchip/chisel3 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 513b8b07..8083dc3d 100644 --- a/build.sbt +++ b/build.sbt @@ -79,7 +79,7 @@ def isolateAllTests(tests: Seq[TestDefinition]) = tests map { test => // before launching sbt if any of the firrtl source files has been updated // The jar is dropped in chipyard's lib/ directory, which is used as the unmanagedBase // for all subprojects -lazy val chisel = (project in rocketChipDir / "chisel3") +lazy val chisel = (project in file("tools/chisel3")) lazy val firrtl_interpreter = (project in file("tools/firrtl-interpreter")) .settings(commonSettings)