Skip to content

Commit 460556c

Browse files
committed
Fix non-bootstrapped settings
1 parent b9692b0 commit 460556c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

project/Build.scala

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,8 @@ object Build {
257257
// Settings used when compiling dotty (both non-bootstrapped and bootstrapped)
258258
lazy val commonDottySettings = commonSettings ++ Seq(
259259
// Manually set the standard library to use
260-
autoScalaLibrary := false
260+
autoScalaLibrary := false,
261+
classpathOptions ~= (_.withAutoBoot(false).withFilterLibrary(false))
261262
)
262263

263264
lazy val commonScala2Settings = commonSettings ++ Seq(
@@ -277,7 +278,7 @@ object Build {
277278
scalaVersion := referenceVersion,
278279
excludeFromIDE := true,
279280

280-
disableDocSetting
281+
disableDocSetting,
281282
)
282283

283284
// Settings used when compiling dotty with a non-bootstrapped dotty

0 commit comments

Comments
 (0)