Quote:
Originally Posted by kapoira
i have a problem i'm trying to put a scratchbos in my ubuntu 7.04 64 bits
and when i try to install the scratchbox, these stop me....
omega@omega-desktop:~/Instalaciones/iliad$ sudo dpkg -i scratchbox-toolchain-arm-softfloat-gcc3.4.2-glibc2.3.3_20061031-2_i386.deb
dpkg: error al procesar scratchbox-toolchain-arm-softfloat-gcc3.4.2-glibc2.3.3_20061031-2_i386.deb (--install):
la arquitectura del paquete (i386) no corresponde con la del sistema (amd64)
Se encontraron errores al procesar:
that he don't like the i386 package and wants a amd64...
how i can solve this to start to port programs to the iliad, thanks to all
|
If you have 32 bit support installed, you can try this alternative:
1. Do the following to install the required deps:
# dpkg --info scratchbox-toolchain-arm-softfloat-gcc3.4.2-glibc2.3.3_20061031-2_i386.deb | grep Depends | cut -d : -f 2 | tr , ' ' | sed "s/(.*)//g" > sc-deps
# apt-get install `cat sc-deps`
2. Use alien to convert the package into a tgz:
# apt-get install alien
# alien --to-tgz scratchbox-toolchain-arm-softfloat-gcc3.4.2-glibc2.3.3_20061031-2_i386.deb
# mkdir t
# cd t
# alien ../scratchbox*toolchain*tgz
3. Then continue with the steps in the HOWTO page.