If i remember correctly the pdaxrom iso does not contain the cross compile sdk for pdaxrom on the zaurus, it is just a distribution that contains what is needed to use the cross-sdk or the builder. (but this might have change)
the cross sdk is in /opt/cross/.....
You will need an ext2 (or ext3, another possibility might be to make an image with dd on a fat filesystem..) partition on your hard disk.
If you don't have the crosscompiler, download the one here:
http://www.pdaxrom.org/index.php?showid=40&menuid=11untar the archive and on your hard disk partition and make a link (ln -s ... sorry I don't remember the details) so that you have a structure like /opt/cross/3.3.2 ...).
After that run the runsdk.sh script in /opt/cross/3.3.2...) this script will set the path for you.
With the latest sdk, when there is a configure script using:
[CODE}./configure --host=armv5tel-cacko-linux --build=i686-linux[/CODE]
is generally enough.
If you have only a Makefile, you will have to modify it or maybe run it
with some environnement variables set, something like:
[CODE]CC=armv5tel-linux-gcc CXX=armv5tel-linux-g++ make[CODE]
see also :
http://www.pdaxrom.org/index.php?showid=34&menuid=1and
http://www.pdaxrom.org/index.php?showid=35&menuid=1Though some things(the paths, the x includes
are not required) have changed the info is still usefull to get started.
Finally if you allready have linux on your desktop, you probably can install the sdk on your existing linux, without bothering with the live cd.
hope this helps.........