Cross Compiling for arm

c, c++, cross-compiling

Solution

Install C++ compiler:

sudo apt-get install g++-4.4-arm-linux-gnueabi

Problem

I am writing a c++ application and trying to cross compile for arm: sudo apt-get install gcc-4.4-arm-linux-gnueabi However in the /usr/arm-linux-gnueabi/include directory I find no c++ directory. Can someone tell me where to find it?

Original source