We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5303916 commit a11a13fCopy full SHA for a11a13f
project/Build.scala
@@ -258,7 +258,12 @@ object Build {
258
// Settings used when compiling dotty (both non-bootstrapped and bootstrapped)
259
lazy val commonDottySettings = commonSettings ++ Seq(
260
// Manually set the standard library to use
261
- autoScalaLibrary := false
+ autoScalaLibrary := false,
262
+ classpathOptions ~= (old =>
263
+ old
264
+ .withAutoBoot(false) // no library on the compiler bootclasspath - we may need a more recent version
265
+ .withFilterLibrary(false) // ...instead, we put it on the compiler classpath
266
+ ),
267
)
268
269
lazy val commonScala2Settings = commonSettings ++ Seq(
0 commit comments