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 11bd355 commit b8ea463Copy full SHA for b8ea463
project/Build.scala
@@ -110,7 +110,7 @@ object DottyBuild extends Build {
110
path = file.getAbsolutePath
111
} yield "-Xbootclasspath/p:" + path
112
// dotty itself needs to be in the bootclasspath
113
- val fullpath = ("-Xbootclasspath/a:" + bin) :: path.toList
+ val fullpath = ("-Xbootclasspath/p:" + "dotty.jar") :: ("-Xbootclasspath/a:" + bin) :: path.toList
114
// System.err.println("BOOTPATH: " + fullpath)
115
116
val travis_build = // propagate if this is a travis build
0 commit comments