Cross compilation for the hand

I am writing a C ++ application and trying to cross compile for hand: sudo apt-get install gcc-4.4-arm-linux-gnueabi

However, in the directory / usr / arm -linux-gnueabi / include, I do not find the C ++ directory. Can someone tell me where to find it?

+6
source share
1 answer

Install C ++ Compiler:

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

Source: https://habr.com/ru/post/920854/


All Articles