Update scala/sbt/chisel versions

The previous setup used Scala 2.12 even though Chipyard was trying to
override it to use 2.13.10.

Also sync Chisel minor versions with Chipyard, and update to a recent
sbt version.
This commit is contained in:
Tynan McAuley
2023-02-22 21:54:11 -08:00
parent 9760528f1d
commit 4e398da790
2 changed files with 4 additions and 5 deletions

View File

@@ -1,15 +1,14 @@
// See LICENSE for license details. // See LICENSE for license details.
val defaultVersions = Map( val defaultVersions = Map(
"chisel3" -> "3.5.1", "chisel3" -> "3.5.5",
"chisel-iotesters" -> "2.5.1" "chisel-iotesters" -> "2.5.5"
) )
organization := "edu.berkeley.cs" organization := "edu.berkeley.cs"
version := "0.4-SNAPSHOT" version := "0.4-SNAPSHOT"
name := "tapeout" name := "tapeout"
scalaVersion := "2.12.13" scalaVersion := "2.13.10"
crossScalaVersions := Seq("2.12.13", "2.13.6")
scalacOptions := Seq("-deprecation", "-feature", "-language:reflectiveCalls") scalacOptions := Seq("-deprecation", "-feature", "-language:reflectiveCalls")
Test / scalacOptions ++= Seq("-language:reflectiveCalls") Test / scalacOptions ++= Seq("-language:reflectiveCalls")
fork := true fork := true

View File

@@ -1 +1 @@
sbt.version=1.3.13 sbt.version=1.8.2