cancel
Showing results for 
Search instead for 
Did you mean: 

Distribuited compilation.

FMarr.2
Associate III

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

1 ACCEPTED SOLUTION

Accepted Solutions
Peter BENSCH
ST Employee

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:

  • select your project
  • Project > Properties > C/C++ Build --> Builder

Either Use default build command or set the build command to make -j<# cores>

Regards

/Peter

In order to give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.

View solution in original post

2 REPLIES 2
Peter BENSCH
ST Employee

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:

  • select your project
  • Project > Properties > C/C++ Build --> Builder

Either Use default build command or set the build command to make -j<# cores>

Regards

/Peter

In order to give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
FMarr.2
Associate III

Thank you very much Peter. I did not know! Beautifull