error while installing arm_qtopia

Yayati Ekbote
While i followed the steps involved in installing arm_qtopia.tar.gz
provided with friendly arm device. I did the following things

#tar xvzf arm_qtopia.tar.gz -C/

It created a directory called arm-qtopia in the file system....

Then i clicked 'build-all' shell script to build all the elements in the
folder arm-qtopia.....

While it did all the things while building qtopia...at some point it gave
an error as following....

/bin/sh:arm-linux-g++:command not found
make[1]: ***[allmoc.cpp] Error 127
make[1]: Leaving directory '/arm-qtopia/qtopia-2.2.0-FriendlyARM/qt2/src'

...

Thus my application which i want to port on ARM device is not getting
compiled using qmake of arm-qtopia....
What is the problem?? Please guide.....

miniFan
You need to correct the symbolic links for this apps, or use
arm-none-linux-gnueabi-gcc instead.

To correct the symbolic links (use root or prepend the commands with sudo):

# cd /usr/local/arm/4.3.2/bin
# rm arm-linux-g++
# rm arm-linux-gcc
# ln -s arm-none-linux-gnueabi-gcc arm-linux-gcc
# ln -s arm-none-linux-gnueabi-g++ arm-linux-g++

Hope it helps

skip2816
follow the howto in this thread:
http://friendlyarm.net/forum/topic/332?lang=en

skip

Yayati Ekbote
Thanks miniFan and Skip....i'll surely try this...

jignesh
I have same error while compiling 

Have you get the solution for this error?

/bin/sh:arm-linux-g++:command not found
make[1]: ***[allmoc.cpp] Error 127
make[1]: Leaving directory '/arm-qtopia/qtopia-2.2.0-FriendlyARM/qt2/src'