Page 1 of 1

COMPILING

Posted: Sat Jul 12, 2008 10:54 am
by valiyuneski
IN XUBUNTU A SIMPLE SAMPLE IMAGE I GET THE FOLLOWING ERROR :

Building: "/usr/bin/make" -j 1 -f "test_wsp.mk" type=Debug
----------Building project:[ test - Debug ]----------
gcc: error trying to exec 'cc1plus': execvp: No such file or directory
make[1]: *** [Debug/main.o.d] Error 1
make: *** [All] Error 2
----------Build Ended----------

Re: COMPILING

Posted: Sat Jul 12, 2008 2:18 pm
by eranif
Do you have g++ installed?

What happen when you type from the terminal:

Code: Select all

which g++
EDIT:

Install this:

Code: Select all

sudo apt-get install build-essential
Eran