User forums > Using Code::Blocks
What does "Number of processes for parallel builds" actually do?
(1/1)
Dice:
If you go to Settings--> Compiler --> Build Options then you'll see the first field called "Number of processes for parallel builds:". If I write a multi-threaded program but leave "Number of processes for parallel builds" set = 1, will my program still be single threaded? What does "Number of processes for parallel builds" actually do? I'm still new to multi-threading so thank you for your time and patience.
MortenMacFly:
--- Quote from: Dice on January 10, 2016, 05:49:50 am ---I'm still new to multi-threading so thank you for your time and patience.
--- End quote ---
It has nothing to do with your application. It basically means that the process steps to produce your executable (compiling, linking) will be paralleled whenever possible. For example: Compiling source code to object files can be paralleled as it is independent from each other.
Dice:
It has nothing to do with your application. It basically means that the process steps to produce your executable (compiling, linking) will be paralleled whenever possible. For example: Compiling source code to object files can be paralleled as it is independent from each other.
[/quote]
Excellent, thanks for the reply.
Navigation
[0] Message Index
Go to full version