Difference between revisions of "Qtopia core howto"

From Gumstix User Wiki
Jump to: navigation, search
Line 10: Line 10:
  
 
download and unpack
 
download and unpack
 
  
 
   $ wget ftp://ftp.trolltech.com/qt/source/qtopia-core-opensource-src-4.4.0-beta1.tar.gz
 
   $ wget ftp://ftp.trolltech.com/qt/source/qtopia-core-opensource-src-4.4.0-beta1.tar.gz
Line 18: Line 17:
  
 
configure, make and make install
 
configure, make and make install
 
  
 
   $ ./configure -embedded arm -little-endian -prefix /qtopia ; make ; sudo make install
 
   $ ./configure -embedded arm -little-endian -prefix /qtopia ; make ; sudo make install
  
  
remove debug files *.debug
 
 
 
tar and move it to gumstix
 
  
  
  $ tar cfv ~/qtopia-core.tar /qtopia
+
tar and move it to gumstix (~83 MB including examples & demos)
  
   gumstix: $ mkdir /qtopia ; tar xfv qtopia-core.tar -C /qtopia
+
   $ tar cvf ~/qtopia-core.tar --exclude=doc /qtopia
  
 +
  gumstix: $ mkdir /media/cf/qtopia ; tar xvf qtopia-core.tar -C /media/cf/qtopia ; ln -s /media/cf/qtopia/ /qtopia
  
  
  
 
[[Category:How_to_-_gui]]
 
[[Category:How_to_-_gui]]

Revision as of 06:48, 1 March 2008

incomplete


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/qt/source/qtopia-core-opensource-src-4.4.0-beta1.tar.gz
 $ tar xfzv tar xzvf qtopia-core-opensource-src-4.4.0-beta1.tar.gz ; cd qtopia-core-opensource-src-4.4.0-beta1/


configure, make and make install

 $ ./configure -embedded arm -little-endian -prefix /qtopia ; make ; sudo make install



tar and move it to gumstix (~83 MB including examples & demos)

 $ tar cvf ~/qtopia-core.tar --exclude=doc /qtopia
 gumstix: $ mkdir /media/cf/qtopia ; tar xvf qtopia-core.tar -C /media/cf/qtopia ; ln -s /media/cf/qtopia/ /qtopia