2021-04-28 11:33 PM
Hi,
due to size of project, i would like to know if there is some plugin to distribuite compilation over more cores like Incredibuild does on visual studio or is it possible, meaning it is supported to develop for stm32 under visual studio.
Even other suggestions about distribuited compiling to speed up the process.
Regards
Solved! Go to Solution.
2021-04-28 11:52 PM
STM32CubeIDE with the embedded GNU GCC does this automatically.
You can also change the build command to the number of cores present in your system:
Either Use default build command or set the build command to make -j<# cores>
Regards
/Peter
2021-04-28 11:52 PM
STM32CubeIDE with the embedded GNU GCC does this automatically.
You can also change the build command to the number of cores present in your system:
Either Use default build command or set the build command to make -j<# cores>
Regards
/Peter
2021-04-29 12:03 AM
Thank you very much Peter. I did not know! Beautifull