Reputation: 1013
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?
Upvotes: 8
Views: 3881
Reputation: 3825
Install C++ compiler:
sudo apt-get install g++-4.4-arm-linux-gnueabi
Upvotes: 11