Despite I have a rather modern machine (Intel i7, 12 cores) and a not too big project, compiling a Zephyr application takes too much time. I'm used to FreeRTOS compilation times being 2-5x faster than this. (Of course, Zephyr code base is larger) If my suspicion is right, substantial part of the overall compilation time is consumed by various build system scripts to parse devicetree, regenerate devicetree-related files and so on. It's mostly just a waste of time, because during a regular development the devicetree isn't touched, so there'd be no need to parse again.
Is there any way to have the Zephyr build system recompile the source files only, without executing time-consuming scripts e.g. to regenerate devicetree stuff?
(there's ccache installed on my machine, it's just working for the GCC-phase of compilation)
Any tips to speed up compile are welcome ;)
thanks, regards,