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 9ff94c9 commit fc7bdf1Copy full SHA for fc7bdf1
compiler/src/dotty/tools/dotc/Driver.scala
@@ -147,7 +147,8 @@ class Driver {
147
}.unzip
148
val ctx1 = ctx0.fresh
149
val classPaths1 = classPaths.distinct.filter(_ != "")
150
- ctx1.setSetting(ctx1.settings.classpath, (ctx1.settings.classpath.value(ctx1) :: classPaths1).mkString(":"))
+ val fullClassPath = (ctx1.settings.classpath.value(ctx1) :: classPaths1).mkString(java.io.File.pathSeparator)
151
+ ctx1.setSetting(ctx1.settings.classpath, fullClassPath)
152
(classNames, ctx1)
153
} else (fileNames0, ctx0)
154
doCompile(newCompiler(ctx), fileNames)(ctx)
0 commit comments