Skip to content

Commit b8ea463

Browse files
committed
Dotty: actually put dotty.jar into bootclasspath.
Partest used to run tests with Dotty, but stopped at some moment. I guess this line may have been deleted at some merge conflict.
1 parent 11bd355 commit b8ea463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ object DottyBuild extends Build {
110110
path = file.getAbsolutePath
111111
} yield "-Xbootclasspath/p:" + path
112112
// dotty itself needs to be in the bootclasspath
113-
val fullpath = ("-Xbootclasspath/a:" + bin) :: path.toList
113+
val fullpath = ("-Xbootclasspath/p:" + "dotty.jar") :: ("-Xbootclasspath/a:" + bin) :: path.toList
114114
// System.err.println("BOOTPATH: " + fullpath)
115115

116116
val travis_build = // propagate if this is a travis build

0 commit comments

Comments
 (0)