Skip to content

Commit 79791a7

Browse files
committed
Add Chisel 3.6 compiler plugin requirement
Chisel 3.6+ requires the compiler plugin to be explicitly loaded. This fixes the Docker build error during notebook execution. Changes: - Add: import $plugin.$ivy.`edu.berkeley.cs:::chisel3-plugin:3.6.+` - Resolves: "The Chisel compiler plugin is now required" assertion error Reference: https://github.com/chipsalliance/chisel3#build-your-own-chisel-projects
1 parent 4b16c51 commit 79791a7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

source/load-ivy.sc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ interp.repositories() ::: List(
44

55
@
66

7+
// Chisel 3.6+ requires the compiler plugin
8+
import $plugin.$ivy.`edu.berkeley.cs:::chisel3-plugin:3.6.+`
9+
710
interp.configureCompiler(x => x.settings.source.value = scala.tools.nsc.settings.ScalaVersion("2.12.10"))
811

912
// Uncomment and change to use proxy

0 commit comments

Comments
 (0)