Difference between revisions of "Qtopia platform howto"

From Gumstix User Wiki
Jump to: navigation, search
Line 1: Line 1:
'''incomplete'''
 
 
 
 
we need qtopia to find the compiler (symlinks & path)
 
we need qtopia to find the compiler (symlinks & path)
  
Line 23: Line 20:
 
tar image and move it to gumstix
 
tar image and move it to gumstix
  
   $ tar cfv ~/qtopia-platform.tar /qtopia/image
+
   $ cd image ; tar cfv ~/qtopia-platform.tar .
  
   gumstix: $ tar xvf qtopia-platform.tar -C /mnt/cf/qtopia ; ln -s /mnt/cf/qtopia/ /qtopia
+
   gumstix: $ mkdir /media/cf/qtopia ; tar xvf qtopia-platform.tar -C /media/cf/qtopia ; ln -s /media/cf/qtopia/ /qtopia
  
  
 
qtopia needs libstdc++, move it to your gumstix's /lib or somewhere it can be found
 
qtopia needs libstdc++, move it to your gumstix's /lib or somewhere it can be found
  
   gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/libstdc++.so
+
   $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/
   gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/libstdc++.so.6
+
  $ tar cfv ~/libstdc++.tar libstdc++.so*
   gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/libstdc++.so.6.0.8
+
 
 +
  libstdc++.so
 +
   libstdc++.so.6
 +
   libstdc++.so.6.0.8
  
 +
  gumstix: $ tar xvf libstdc++.tar -C /lib
 +
 
  
  
  
 
[[Category:howtos]]
 
[[Category:howtos]]

Revision as of 07:00, 21 February 2008

we need qtopia to find the compiler (symlinks & path)

 $ cd path-to/gumstix-oe/tmp/cross/bin ; for f in arm-angstrom-linux-gnueabi-*; do n=$(echo $f|cut -b 28-); ln -s $f arm-linux-$n; done
 $ PATH=$PATH:path-to/gumstix-oe/tmp/cross/bin/ ; export PATH


download and unpack

 $ wget ftp://ftp.trolltech.com/qtopia/source/qtopia-opensource-src-4.3.1.tar.gz
 $ tar xfzv qtopia-opensource-src-4.3.1.tar.gz


configure, make and make install

 $ mkdir qtopia-platform ; cd qtopia-platform
 $ ../qtopia-opensource-4.3.1/configure -separate-debug-info -little-endian -edition platform -xplatform arm -arch arm -prefix /qtopia 
 $ make ; make install


tar image and move it to gumstix

 $ cd image ; tar cfv ~/qtopia-platform.tar .
 gumstix: $ mkdir /media/cf/qtopia ; tar xvf qtopia-platform.tar -C /media/cf/qtopia ; ln -s /media/cf/qtopia/ /qtopia


qtopia needs libstdc++, move it to your gumstix's /lib or somewhere it can be found

 $ cd path-to/gumstix-oe/tmp/staging/arm-angstrom-linux-gnueabi/lib/
 $ tar cfv ~/libstdc++.tar libstdc++.so*
 libstdc++.so
 libstdc++.so.6
 libstdc++.so.6.0.8
 gumstix: $ tar xvf libstdc++.tar -C /lib