aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--nailgun_launcher/Stage0Lib.java5
-rw-r--r--stage1/Stage1.scala2
2 files changed, 5 insertions, 2 deletions
diff --git a/nailgun_launcher/Stage0Lib.java b/nailgun_launcher/Stage0Lib.java
index ae09d78..9728e6f 100644
--- a/nailgun_launcher/Stage0Lib.java
+++ b/nailgun_launcher/Stage0Lib.java
@@ -74,7 +74,10 @@ public class Stage0Lib{
"-sbt-interface", earlyDeps.sbtInterface_0_13_9_File,
"-compiler-interface", earlyDeps.compilerInterface_0_13_9_File,
"-cp", classpath,
- "-d", target
+ "-d", target,
+ "-S-deprecation",
+ "-S-feature",
+ "-S-unchecked"
}
)
);
diff --git a/stage1/Stage1.scala b/stage1/Stage1.scala
index 1059647..d7081dd 100644
--- a/stage1/Stage1.scala
+++ b/stage1/Stage1.scala
@@ -101,7 +101,7 @@ object Stage1{
stage2sourceFiles, stage2Target, stage2StatusFile,
cbtDependency.dependencyClasspath,
mavenCache,
- Seq("-deprecation"), classLoaderCache,
+ Seq("-deprecation","-feature","-unchecked"), classLoaderCache,
zincVersion = "0.3.9", scalaVersion = constants.scalaVersion
)