Skip to content

Commit

Permalink
Dotty: actually put dotty.jar into bootclasspath.
Browse files Browse the repository at this point in the history
Partest used to run tests with Dotty, but stopped at some moment.
I guess this line may have been deleted at some merge conflict.
  • Loading branch information
DarkDimius committed Jul 28, 2016
1 parent 79e0fe0 commit 4819e75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ object DottyBuild extends Build {
path = file.getAbsolutePath
} yield "-Xbootclasspath/p:" + path
// dotty itself needs to be in the bootclasspath
val fullpath = ("-Xbootclasspath/a:" + bin) :: path.toList
val fullpath = ("-Xbootclasspath/p:" + "dotty.jar") :: ("-Xbootclasspath/a:" + bin) :: path.toList
// System.err.println("BOOTPATH: " + fullpath)

val travis_build = // propagate if this is a travis build
Expand Down

0 comments on commit 4819e75

Please sign in to comment.