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 394217e commit 44a598bCopy full SHA for 44a598b
project/Build.scala
@@ -753,7 +753,7 @@ object Build {
753
// Settings shared between dotty-library and dotty-library-bootstrapped
754
lazy val dottyLibrarySettings = Seq(
755
// Needed so that the library sources are visible when `dotty.tools.dotc.core.Definitions#init` is called
756
- scalacOptions in Compile ++= Seq("-sourcepath", (scalaSource in Compile).value.getAbsolutePath),
+ scalacOptions in Compile ++= Seq("-sourcepath", (sourceDirectories in Compile).value.map(_.getAbsolutePath).distinct.mkString(File.pathSeparator)),
757
)
758
759
lazy val `dotty-library` = project.in(file("library")).asDottyLibrary(NonBootstrapped)
0 commit comments