project not compile
-
- CodeLite Curious
- Posts: 2
- Joined: Tue May 15, 2012 4:05 pm
- Genuine User: Yes
- IDE Question: c++
- Contact:
project not compile
hi! I am new to linux and just installed gnu g++ and codelite but when i compile a project it shows a message in build window like this "make:not found" what should i do?
- Jarod42
- CodeLite Expert
- Posts: 240
- Joined: Wed Sep 30, 2009 5:54 pm
- Genuine User: Yes
- IDE Question: C++
- Location: France
- Contact:
Re: project not compile
Check that 'make' is in your path:
possible useful locations:
+ Settings -> Environment Variables...
+ Settings -> Build settings... : Build Systems
possible useful locations:
+ Settings -> Environment Variables...
+ Settings -> Build settings... : Build Systems
-
- CodeLite Plugin
- Posts: 819
- Joined: Wed Sep 03, 2008 7:26 pm
- Contact:
Re: project not compile
Hi,
Also check that you have 'make' installed. Not all distros do.
Look for it in your distro's gui package manager; or install the 'build-essential' package, which is likely to contain any missing items.
Regards,
David
Also check that you have 'make' installed. Not all distros do.
Look for it in your distro's gui package manager; or install the 'build-essential' package, which is likely to contain any missing items.
Regards,
David
-
- CodeLite Curious
- Posts: 2
- Joined: Tue May 15, 2012 4:05 pm
- Genuine User: Yes
- IDE Question: c++
- Contact:
Re: project not compile
thanks! I installed 'make' from synaptic package manager and it worked. Thanks a lot!