Reputation: 11
I am using editor codelite-9.1.0 version. I have 20 project attached with a workspace.All project were building properly before earsing the OS from my machine. I am using ubuntu-14.04 LTS os. Now some of the project were building properly and some project are not building. I am getting below error while building the project
/bin/sh -c ' -j 4 -e -f Makefile'
/bin/sh: 1: -j: not found
Could you please help me why this error is coming for some project?
Upvotes: 1
Views: 256
Reputation: 2400
The build line indicates that CodeLite could not configure a proper compiler toolchain.
You should let CodeLite scan for the installed compilers, follow these instructions to auto scan and configure the compilers in CodeLite
If no compilers were found, please install one: sudo apt-get install build-essential
Next, try to build your project and CodeLite will do one of the following:
HTH Eran
Upvotes: 2