- Code: Select all
ai@touchbook:/home/ai$ ls -l `which g++`
lrwxrwxrwx 1 root root 30 Nov 17 10:11 /usr/bin/g++ -> arm-angstrom-linux-gnueabi-g++
To get 'standardized' cmd names (like g++/gcc/etc.) you need to install the symlinks package:
- Code: Select all
ai@touchbook:/home/ai$ grep symlinks ipkglist.txt
binutils-symlinks - 2.18.50.0.7-r7.3 - A GNU collection of binary utilities
cpp-symlinks - 4.3.3-r9.1.4 - The GNU cc and gcc C compilers.
g++-symlinks - 4.3.3-r9.1.4 - The GNU cc and gcc C compilers.
g77-symlinks - 4.3.3-r9.1.4 - The GNU cc and gcc C compilers.
gcc-symlinks - 4.3.3-r9.1.4 - The GNU cc and gcc C compilers.
You'll also need this, probably:
- Code: Select all
libstdc++-dev - 4.3.3-r9.1.4 - The GNU cc and gcc C compilers.
.. although its possible you've already got it - not sure of the dependencies myself, but I have it on my machine and I build large c++ apps on my Touchbook with ease right now ..
So:
- Code: Select all
ipkg install cpp-symlinks g++-symlinks gcc-symlinks libstdc++-dev
