-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.sbt
100 lines (90 loc) · 2.93 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// See LICENSE for license details.
// Provide a managed dependency on X if -DXVersion="" is supplied on the command line.
val defaultVersions = Map(
"dsptools" -> "1.3-SNAPSHOT",
"rocket-dsptools" -> "1.3-SNAPSHOT",
"firesim" -> "1.0"
)
val commonSettings = Seq(
organization := "edu.berkeley.cs",
version := "0.1-SNAPSHOT",
scalaVersion := "2.12.10",
resolvers ++= Seq(
Resolver.sonatypeRepo("snapshots"),
Resolver.sonatypeRepo("release")
),
scalacOptions ++= Seq(
"-deprecation",
"-explaintypes",
"-feature",
"-language:reflectiveCalls",
"-unchecked",
"-Xcheckinit",
"-Xlint:infer-any",
"-Xlint:missing-interpolator",
"-Xsource:2.11",
"-Ywarn-unused:imports",
"-Ywarn-unused:locals"
),
// scalacOptions ++= scalacOptions(scalaVersion.value),
javacOptions ++= javacOptionsVersion(scalaVersion.value),
addCompilerPlugin("org.scalamacros" % "paradise" % "2.1.1" cross CrossVersion.full),
)
val ofdmSettings = Seq(
libraryDependencies ++= Seq("dsptools").map {
dep: String => "edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", defaultVersions(dep))
},
libraryDependencies += "org.tukaani" % "xz" % "1.0"
)
val ofdmRocketSettings = Seq(
name := "ofdm-rocket",
libraryDependencies ++= Seq("rocket-dsptools").map {
dep: String => "edu.berkeley.cs" %% dep % sys.props.getOrElse(dep + "Version", defaultVersions(dep))
}
)
val ofdmFiresimSettings = Seq(
name := "ofdm-firesim",
libraryDependencies ++= Seq("firesim").map {
dep: String => "berkeley" %% dep % sys.props.getOrElse(dep + "Version", defaultVersions(dep))
}
)
lazy val ofdm = (project in file(".")).
settings(commonSettings: _*).
settings(name := "ofdm").
settings(ofdmSettings: _*)
lazy val ofdmRocket = (project in file("rocket")).
settings(commonSettings: _*).
settings(ofdmRocketSettings: _*).
dependsOn(ofdm).
aggregate(ofdm)
/*
lazy val ofdmFiresim = (project in file("firesim")).
settings(commonSettings: _*).
settings(ofdmFiresimSettings: _*).
dependsOn(ofdmRocket).
aggregate(ofdmRocket)
*/
def scalacOptionsVersion(scalaVersion: String): Seq[String] = {
Seq() ++ {
// If we're building with Scala > 2.11, enable the compile option
// switch to support our anonymous Bundle definitions:
// https://github.com/scala/bug/issues/10047
CrossVersion.partialVersion(scalaVersion) match {
case Some((2, scalaMajor: Long)) if scalaMajor < 12 => Seq()
case _ => Seq("-Xsource:2.11")
}
}
}
def javacOptionsVersion(scalaVersion: String): Seq[String] = {
Seq() ++ {
// Scala 2.12 requires Java 8. We continue to generate
// Java 7 compatible code for Scala 2.11
// for compatibility with old clients.
CrossVersion.partialVersion(scalaVersion) match {
case Some((2, scalaMajor: Long)) if scalaMajor < 12 =>
Seq("-source", "1.7", "-target", "1.7")
case _ =>
Seq("-source", "1.8", "-target", "1.8")
}
}
}