Joris PZ
12/07/2019, 6:53 PMExecution failed for task ':linkDebugExecutableMingw'.
> Process 'command 'C:\dev\java\openjdk-11.0.2\bin\java.exe'' finished with non-zero exit value 1
Before I throw in the towel and just continue on JVM alone, if anyone would be willing to take a look to see what I could be doing wrong it would be much appreciated. The repo is https://github.com/jorispz/aoc-2019, the project is pretty much standard as generated by IDEA, with the addition of the coroutine depenendencies.Joris PZ
12/07/2019, 9:31 PMsuspend fun main
as an entry point... The error got lost in the noise somehow, so nothing to do with the build stuffjk2018
12/08/2019, 5:40 PMjk2018
12/08/2019, 5:40 PMjk2018
12/08/2019, 5:40 PMJoris PZ
12/08/2019, 6:04 PMsuspend fun main(args: Array<String>) {}
to
fun main(args: Array<String>) {
runBlocking {
// ...
}
}
Joris PZ
12/08/2019, 6:07 PMrunBlocking
isn't an extra burden