using 'external' Makefile

General questions regarding the usage of CodeLite
xaphoon
CodeLite Curious
Posts: 2
Joined: Wed Feb 28, 2018 11:16 pm
Genuine User: Yes
IDE Question: C++
Contact:

using 'external' Makefile

Post by xaphoon »

Hello!
I'm using a 11.0.7 version of the CodeLite with Windows10 (x64); I'm working with C++ code for Arm Cortex M4, and using my own Makefile on order to build everything properly. When I right-click on the project, and select "build" menu option, CodeLite does the build. But it is too slow. looks like it does 'make' instead of 'make -j 16' . How I can make it work faster and enable the parallel compilation?

Best regards, Igor
User avatar
eranif
CodeLite Plugin
Posts: 6367
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: using 'external' Makefile

Post by eranif »

change the command to "make -j16" ? in project settings->customize->custom build, double click on the "Build" entry and change it
Make sure you have read the HOW TO POST thread
xaphoon
CodeLite Curious
Posts: 2
Joined: Wed Feb 28, 2018 11:16 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: using 'external' Makefile

Post by xaphoon »

Working!!!! Now it's much faster!! Thanks!
Post Reply