I am compiling my simple "Hello world" C code using the following command:
arm-linux-gnueabi-gcc-4.4 test.cpp -o testIt generates an error:
arm-linux-gnueabi-gcc-4.4: error trying to exec 'cc1plus': execvp: No such file or directoryMy directory:
/usr/lib/gcc/arm-linux-gnueabi/4.4.7won't have anycc1plusfile as the compiler is looking forcc1pluswhereas my/usr/lib/gcc/arm-linux-gnueabi/4.6has thecc1plusfile.
My test.cpp is a simple "hello-world" program, which I am going to target for ARM processor.
Please suggest how to solve this problem.