is there any way to speed it up? or are there some new config need to be set?
🧵 1
z
zsmb
05/03/2025, 9:26 PM
It's probably normal for release builds, debug should be significantly faster.
Make sure you follow all these best practices in your project: https://kotlinlang.org/docs/native-improving-compilation-time.html
If you have some caching disabled for example, you could be hurting your build times.
f
François
05/04/2025, 6:19 AM
Release build take time, there are some tips gave by @zsmb for reducing it.
This is currently unavoidable.
a
Arkadii Ivanov
05/04/2025, 2:21 PM
You can also configure your build script so that it only links the current architecture on CI and locally. And you can also disable assembling the framework on CI and locally, keep it only if you are building from Xcode or publishing the framework. I've been doing it for quite some time already, saving plenty of time.