Page 1 of 1

using 'external' Makefile

Posted: Thu Mar 01, 2018 12:12 am
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

Re: using 'external' Makefile

Posted: Sat Mar 03, 2018 4:46 am
by eranif
change the command to "make -j16" ? in project settings->customize->custom build, double click on the "Build" entry and change it

Re: using 'external' Makefile

Posted: Mon Mar 12, 2018 9:37 pm
by xaphoon
Working!!!! Now it's much faster!! Thanks!