You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Windows' kotlinc calls javac (or java?) in its internals. If there is no javac in PATH the compilation fails. In KotlinTestCompiler we need to search for both kotlinc and javac, and somehow let kotlinc "know" about javac.
To Reproduce
Steps to reproduce the behavior:
Run test generation on Windows (ensure no javac is present in PATH; it should be the case it you did not install java manually, from Oracle, for example).
Observe compilation errors; see the console output; there should be an error about javac not found.
Expected behavior
Kotlin compilation should work correctly on Windows.
Additional context
Another Windows issue is this one: #407. These two issues are different, yet both relate to Windows compilation.
The text was updated successfully, but these errors were encountered:
Describe the bug
Windows'
kotlinc
callsjavac
(orjava
?) in its internals. If there is nojavac
inPATH
the compilation fails. InKotlinTestCompiler
we need to search for bothkotlinc
andjavac
, and somehow letkotlinc
"know" aboutjavac
.To Reproduce
Steps to reproduce the behavior:
javac
is present in PATH; it should be the case it you did not installjava
manually, from Oracle, for example).javac
not found.Expected behavior
Kotlin compilation should work correctly on Windows.
Additional context
Another Windows issue is this one: #407. These two issues are different, yet both relate to Windows compilation.
The text was updated successfully, but these errors were encountered: