hello all I try to write/compile a qt application for mini2440 3.5 I was able to: 1. install cross-compiler gcc version 4.3.2 (Sourcery G++ Lite 2008q3-72) 2. install arm-qtopia and x86-qtopia - it works 3. then I did 'aptitude install qtcreator' 4. I download qt-everywhere-opensource-src-4.7.1.tar.gz after unpack I did : ./configure -embedded arm -xplatform qws/linux-arm-g++ -prefix /usr/local/Qt -little-endian -no-webkit -no-qt3support -no-cups -no-largefile -optimized-qmake -no-openssl -nomake tools without -qt-mouse-tslib - I read arm use it automatically make make install - no errors all on my ubuntu 10.10 now I try to compile something I changed qtcreator option and I point a qmake from new embedded instalation, but still it is not enought because I see an error during compilation Failure to read QMAKESPEC conf file /usr/local/Qt/mkspecs/qws/linux-arm-g++/qmake.conf. Error processing project file: /usr/local/Qt/examples/animation/animation.pro this is my qmake.conf # # qmake configuration for building with arm-linux-g++ # include(../../common/g++.conf) include(../../common/linux.conf) include(../../common/qws.conf) # modifications to g++.conf QMAKE_CC = arm-none-linux-gnueabi-gcc QMAKE_CXX = arm-none-linux-gnueabi-g++ QMAKE_LINK = arm-none-linux-gnueabi-g++ QMAKE_LINK_SHLIB = arm-none-linux-gnueabi-g++ # modifications to linux.conf QMAKE_AR = arm-none-linux-gnueabi-ar cqs QMAKE_OBJCOPY = arm-none-linux-gnueabi-objcopy QMAKE_RANLIB = arm-none-linux-gnueabi-ranlib load(qt_config) what I miss? or what I do wrong? should I install qt4 on arm? did anyone wrote an fresh new application in qt?