KDevelop won’t compile project
Published on April 18th, 2007 in Linux, Ubuntu
KDevelop is a nice C++ IDE on Linux. As I installed it on my new Ubuntu box and wanted to run it, everything seemed fine, until I tried to compile a project.
If the following error message appears while trying to compile a KDevelop project:
make: aclocal: Command not found
make: *** [all] Error 127
*** Exited with status: 2 ***
Install the following: “sudo apt-get install g++ gcc make automake1.9 libtool” and restart KDevelop. You should now be able to compile your projects without that error.
Share ThisTrackback URL for this post:
http://www.yatblog.com/2007/04/18/kdevelop-wont-compile-project/trackback/
Bigshot May 12th, 2007
do in a terminal
aptitude search automake
and install the latest automake
sudo apt-get install automakex.xx