It\'s not very difficult, assuming you have a Linux box you would be able to do it just as easily as me (and as you want these things you\'d probably be more motivated too ;-) )
Step by step:
Grab OZ toolchain:
http://www.openzaurus.org/official/toolcha...s-3.3.2.tar.bz2Read the README in the same directory:
http://www.openzaurus.org/official/toolchain/READMEExtract this toolchain:
# cd /
# tar -jxvf /path/to/toolchain/cross-3.3.2.tar.bz2
Then before you try cross compiling source the following file ($ source dev-arm-oz.sh)
dev-arm-OZ.sh script (just the stuff between the lines)
=======================================
#!/bin/bash
CC=arm-linux-gcc
CXX=arm-linux-g++
CCX=arm-linux-gcc
CXXX=arm-linux-g++
COMPILER=arm-linux-gcc
LINKER=arm-linux-g++
PATH=/opt/cross/bin:/opt/cross/arm-linux/bin:$PATH
PS1=\'!OZ-dev-armu@h:w$ \'
export PATH CC CXX CCX CXXX COMPILER LINKER G77 F77
echo \"Altered environment for OZ GCC 3.3.2 Development\"
========================================
Nb. Check that the path in $PATH actually exists (it may need a /3.3.2 added in under /cross), I don\'t use this particular toolchain so I\'m going from memory here.
To do opie stuff (and this is probably not the way it should be done) I downloaded the Sharp ROM Qtopia header files and added the QPEPATH and QTPATH (I think those names are correct) to the above script.
Anyway if I\'ve got some time this weekend I\'ll try compiling those other bits.
Si