File tree 2 files changed +5
-1
lines changed
compiler/test/dotty/tools/vulpix
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ object TestConfiguration {
10
10
)
11
11
12
12
val checkOptions = Array (
13
- " -Yscala2-unpickler" , s " ${Jars .scalaLibrary}: ${Jars .scalaXml}" ,
13
+ // "-Yscala2-unpickler", s"${Jars.scalaLibrary}:${Jars.scalaXml}",
14
14
" -Yno-deep-subtypes" ,
15
15
" -Yno-double-bindings" ,
16
16
" -Yforce-sbt-phases" ,
Original file line number Diff line number Diff line change @@ -228,11 +228,13 @@ object Build {
228
228
scalacOptions ++= Seq (" -bootclasspath" , sys.props(" sun.boot.class.path" )),
229
229
230
230
// Enforce that the only Scala 2 classfiles we unpickle come from scala-library
231
+ /*
231
232
scalacOptions ++= {
232
233
val attList = (dependencyClasspath in `dotty-library` in Compile).value
233
234
val scalaLib = findLib(attList, "scala-library")
234
235
Seq("-Yscala2-unpickler", scalaLib)
235
236
},
237
+ */
236
238
237
239
// sbt gets very unhappy if two projects use the same target
238
240
target := baseDirectory.value / " .." / " out" / " bootstrap" / name.value,
@@ -785,6 +787,7 @@ object Build {
785
787
lazy val `dotty-sbt-bridge-bootstrapped` = project.in(file(" sbt-bridge" )).asDottySbtBridge(Bootstrapped )
786
788
.settings(
787
789
// Tweak -Yscala2-unpickler to allow some sbt dependencies used in tests
790
+ /*
788
791
scalacOptions in Test := {
789
792
val oldOptions = (scalacOptions in Test).value
790
793
val i = oldOptions.indexOf("-Yscala2-unpickler")
@@ -797,6 +800,7 @@ object Build {
797
800
798
801
oldOptions.updated(i + 1, s"$sbtIo:$zincApiInfo:$oldValue")
799
802
}
803
+ */
800
804
)
801
805
802
806
lazy val `dotty-language-server` = project.in(file(" language-server" )).
You can’t perform that action at this time.
0 commit comments