https://kotlinlang.org logo
#compiler
Title
# compiler
s

Stumpos

09/12/2019, 7:21 PM
What are the compile times people are experiencing? I'm new to the Kotlin compiler development and it takes about 40 seconds to compile (context: debugging plugin tests). Is this normal?
r

raulraja

09/12/2019, 7:24 PM
Kotlin is usually fast at compiling but those times can be normal in big codebases like the compiler itself. The compiler repo uses shadowing and a bunch of additional steps beside kotlinCompile to generate artifacts and compose dependencies
👍 1
2 Views