File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ lazy val commonChiselSettings = Seq(
99 libraryDependencies ++= Seq (
1010 " org.chipsalliance" %% " chisel" % chiselVersion,
1111 " edu.berkeley.cs" %% " chiseltest" % " 6.0.0" ,
12- // "edu.berkeley.cs" %% "hardfloat" % "1.5.1-SNAPSHOT"
1312 ),
1413 resolvers += " aliyun" .at(" https://maven.aliyun.com/repository/public" ),
1514 scalacOptions ++= Seq (
@@ -24,6 +23,7 @@ lazy val commonChiselSettings = Seq(
2423
2524lazy val root = (project in file(" ." ))
2625 .dependsOn(fputil)
26+ .dependsOn(hardfloat)
2727 .settings(
2828 name := " transformer_MM" ,
2929 // fork := true,
@@ -40,3 +40,13 @@ lazy val fputil = Project("fputil", file("depencies/fputil/src"))
4040 Compile / scalaSource := baseDirectory.value / " main" / " scala" ,
4141 Compile / resourceDirectory := baseDirectory.value / " main" / " resources"
4242 )
43+
44+ lazy val hardfloat = Project (" hardfloat" , file(" depencies/hardfloat/hardfloat/src" ))
45+ .settings(
46+ name := " hardfloat" ,
47+ commonChiselSettings
48+ )
49+ .settings(
50+ Compile / scalaSource := baseDirectory.value / " main" / " scala" ,
51+ Compile / resourceDirectory := baseDirectory.value / " main" / " resources"
52+ )
You can’t perform that action at this time.
0 commit comments