Page 1 of 1
Multi threaded compiling
Posted:
Wed Feb 24, 2016 2:33 pm
by Adex
Hello,
anyone know how to compile with multi threaded mode on Arduino IDE?
I got 4 core CPU and compiling is somewhat slow.
Re: Multi threaded compiling
Posted:
Fri Feb 26, 2016 8:55 pm
by mrburnette
The application developer decides how to thread an application. The OS respects the developer's wishes if the CPU is capable.
When one thinks about the steps of collecting libs, compiling modules, and linking to a single target file there is few opportunities to multi-thread because everything must be completed and on temp file system before linking.
Ray
Re: Multi threaded compiling
Posted:
Sat Feb 27, 2016 3:19 am
by schufti
I think what he want's to know is if there is some option to the Arduino ide like using -j4 with standard make ...