summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorJack Koenig2021-01-20 18:55:16 -0800
committerJack Koenig2021-01-21 15:36:55 -0800
commit8a73362bb6fe87817a1867cc2482c1841f95c077 (patch)
treea439d2a5fb52941baeffa22297b38160dc2d1249 /build.sc
parentb88ae1fb5cd106f114fa2152ac53c197ae69c164 (diff)
Remove val io
Chisel projects no longer need -Xsource:2.11 when compiling with Scala 2.12. Autowrapping of "val io" for compatibility mode Modules is now implemented using reflection instead of calling the virtual method. Also move Chisel.BlackBox to new chisel3.internal.LegacyBlackBox
Diffstat (limited to 'build.sc')
-rw-r--r--build.sc3
1 files changed, 1 insertions, 2 deletions
diff --git a/build.sc b/build.sc
index 475d432d..c37b748b 100644
--- a/build.sc
+++ b/build.sc
@@ -59,8 +59,7 @@ trait CommonModule extends CrossSbtModule with PublishModule {
override def scalacOptions = T {
super.scalacOptions() ++ Agg(
"-deprecation",
- "-feature",
- "-Xsource:2.11"
+ "-feature"
)
}