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
using 'external' Makefile
-
- CodeLite Curious
- Posts: 2
- Joined: Wed Feb 28, 2018 11:16 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
- eranif
- CodeLite Plugin
- Posts: 6375
- Joined: Wed Feb 06, 2008 9:29 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: using 'external' Makefile
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
-
- CodeLite Curious
- Posts: 2
- Joined: Wed Feb 28, 2018 11:16 pm
- Genuine User: Yes
- IDE Question: C++
- Contact:
Re: using 'external' Makefile
Working!!!! Now it's much faster!! Thanks!