user1179510
user1179510

Reputation: 1013

Cross Compiling for arm

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

Answers (1)

Dmitry Poroh
Dmitry Poroh

Reputation: 3825

Install C++ compiler:

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

Upvotes: 11

Related Questions