This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

QT Setup error at the MIDAS Ultrasound v2.0 Demo

Other Parts Discussed in Thread: MIDAS

Hi, I'm chul.

I have configuration error at MIDAS Ultrasound v2.0 Demo step QT Libraries setup.

First, I try follow website as blow.

Qt Libraries

1. Download the Qt libraries 4.6.2 for embedded Linux from here, save it in ~, and extract the source as:

host $ cd ~
host $ gunzip qt-everywhere-opensource-src-4.6.2.tar.gz
host $ tar xvf qt-everywhere-opensource-src-4.6.2.tar

2. Important: Ensure that Qt uses the host g++ for compiling the Qt libraries. To do this, check your ~/.bashrc file to ensure that CC, CXX variables are not set for cross-compile, i.e. comment any custom definitions as below if present by adding the # sign, as:

#export CC=~/toolchain/arm-2009q1/bin/arm-none-linux-gnueabi-gcc
#export CXX=~/toolchain/arm-2009q1/bin/arm-none-linux-gnueabi-g++

   Run the following command to reset paths. 

host $ source ~/.bashrc

   It is recommended that you close this command window and open a new one before proceeding to ensure environment variables have been picked up.
   NOTE: If you see an error with this please see Gotcha 1 for a common mistake in this step.

3. Edit ~/qt-everywhere-opensource-src-4.6.2/mkspecs/common/linux.conf and add the “-lts” option to QMAKE_LIBS_THREAD as:

QMAKE_LIBS_THREAD     = -lpthread -lts

4. Create an omap3 qmake configuration as follows:

host $ cd ~/qt-everywhere-opensource-src-4.6.2/mkspecs/qws/
host $ cp -r ./linux-arm-g++ ./linux-omap3-g++
host $ gedit ./linux-omap3-g++/qmake.conf

    Replace the text in qmake.conf with the following. Make sure to change <username> as per your host:

# qmake configuration for building with arm-linux-g++

include(../../common/g++.conf)
include(../../common/linux.conf)
include(../../common/qws.conf)

# modifications to g++.conf

# To include ts-lib
QMAKE_INCDIR += /home/<username>/workdir/filesys/include
QMAKE_LIBDIR += /home/<username>/workdir/filesys/lib

#Compiler Flags to take advantage of the ARM architecture
QMAKE_CFLAGS_RELEASE = -O3 -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp
QMAKE_CXXFLAGS_RELEASE= -O3 -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp
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_STRIP = arm-none-linux-gnueabi-strip

load(qt_config)

5. Configure qmake and build Qt libraries. 

host $ cd ~/qt-everywhere-opensource-src-4.6.2
host $ ./configure -prefix /opt/qt -embedded arm -platform /qws/linux-x86-g++ -xplatform /qws/linux-omap3-g++ -depths 16,24,32 \
-no-mmx -no-3dnow -no-sse -no-sse2 -no-glib -no-cups -no-largefile -no-accessibility -no-openssl -no-gtkstyle -qt-mouse-pc \
-qt-mouse-linuxtp -qt-mouse-linuxinput -plugin-mouse-linuxtp -plugin-mouse-pc -fast -qt-mouse-tslib
host $ make
host $ make install INSTALL_ROOT=/home/<username>/workdir/filesys

I input command won@ubuntu:~/qt-everywhere-opensource-src-4.6.2$ ./configure -prefix /opt/qt ~ .

and I get error message.

I analyzed the error message and I found that source code compiled /toolchain/arm-2009q1/bin/arm-none-linux-gnueabi-gcc.

So, I made sure .bashrc and closed terminal.

I opened terminal and input command won@ubuntu ~ $ source .bashrc.

And I input command  won@ubuntu:~/qt-everywhere-opensource-src-4.6.2$ make confclean.

But return stop message. 

The message is " make: *** No rule to make target `confclean'. Stop. "

So. I input command won@ubuntu:~/qt-everywhere-opensource-src-4.6.2/qmake$ rm *.o

and won@ubuntu:~/qt-everywhere-opensource-src-4.6.2/qmake$ make clean .

I try configure again.

won@ubuntu:~/qt-everywhere-opensource-src-4.6.2$ ./configure -prefix /opt/qt ~ .

The result is the following message.


won@ubuntu:~/qt-everywhere-opensource-src-4.6.2$ ./configure -prefix /opt/qt -embedded arm -platform /qws/linux-x86-g++ -xplatform /qws/linux-omap3-g++ -depths 16,24,32 \
> -no-mmx -no-3dnow -no-sse -no-sse2 -no-glib -no-cups -no-largefile -no-accessibility -no-openssl -no-gtkstyle -qt-mouse-pc \
> -qt-mouse-linuxtp -qt-mouse-linuxinput -plugin-mouse-linuxtp -plugin-mouse-pc -fast -qt-mouse-tslib
Which edition of Qt do you want to use ?

Type 'c' if you want to use the Commercial Edition.
Type 'o' if you want to use the Open Source Edition.

o


You have not explicitly asked to use pkg-config and are cross-compiling.
pkg-config will not be used to automatically query cflag/lib parameters for
dependencies


This is the Qt for Embedded Linux Open Source Edition.

You are licensed to use this software under the terms of
the Lesser GNU General Public License (LGPL) versions 2.1.
You are also licensed to use this software under the terms of
the GNU General Public License (GPL) versions 3.

Type '3' to view the GNU General Public License version 3.
Type 'L' to view the Lesser GNU General Public License version 2.1.
Type 'yes' to accept this license offer.
Type 'no' to decline this license offer.

Do you accept the terms of either license? yes

Creating qmake. Please wait...
g++ -c -o project.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT project.cpp
g++ -c -o property.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT property.cpp
g++ -c -o main.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT main.cpp
g++ -c -o makefile.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/makefile.cpp
g++ -c -o unixmake2.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/unix/unixmake2.cpp
g++ -c -o unixmake.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/unix/unixmake.cpp
g++ -c -o mingw_make.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/win32/mingw_make.cpp
g++ -c -o option.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT option.cpp
g++ -c -o winmakefile.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/win32/winmakefile.cpp
g++ -c -o projectgenerator.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/projectgenerator.cpp
g++ -c -o meta.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT meta.cpp
g++ -c -o makefiledeps.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/makefiledeps.cpp
g++ -c -o metamakefile.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/metamakefile.cpp
g++ -c -o xmloutput.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/xmloutput.cpp
g++ -c -o pbuilder_pbx.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/mac/pbuilder_pbx.cpp
g++ -c -o borland_bmake.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/win32/borland_bmake.cpp
g++ -c -o msvc_dsp.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/win32/msvc_dsp.cpp
g++ -c -o msvc_vcproj.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/win32/msvc_vcproj.cpp
g++ -c -o msvc_nmake.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/win32/msvc_nmake.cpp
g++ -c -o msvc_objectmodel.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/win32/msvc_objectmodel.cpp
g++ -c -o symmake.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/symbian/symmake.cpp
g++ -c -o initprojectdeploy_symbian.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/symbian/initprojectdeploy_symbian.cpp
g++ -c -o symmake_abld.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/symbian/symmake_abld.cpp
g++ -c -o symmake_sbsv2.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT generators/symbian/symmake_sbsv2.cpp
g++ -c -o qtextcodec.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/codecs/qtextcodec.cpp
g++ -c -o qutfcodec.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/codecs/qutfcodec.cpp
g++ -c -o qstring.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qstring.cpp
g++ -c -o qtextstream.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qtextstream.cpp
g++ -c -o qiodevice.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qiodevice.cpp
g++ -c -o qmalloc.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global/qmalloc.cpp
g++ -c -o qglobal.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global/qglobal.cpp
g++ -c -o qbytearray.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qbytearray.cpp
g++ -c -o qbytearraymatcher.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qbytearraymatcher.cpp
g++ -c -o qdatastream.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qdatastream.cpp
g++ -c -o qbuffer.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qbuffer.cpp
g++ -c -o qlist.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qlist.cpp
g++ -c -o qfile.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qfile.cpp
g++ -c -o qfsfileengine_unix.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qfsfileengine_unix.cpp
g++ -c -o qfsfileengine_iterator_unix.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qfsfileengine_iterator_unix.cpp
g++ -c -o qfsfileengine.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qfsfileengine.cpp
g++ -c -o qfsfileengine_iterator.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qfsfileengine_iterator.cpp
g++ -c -o qregexp.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qregexp.cpp
g++ -c -o qvector.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qvector.cpp
g++ -c -o qbitarray.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qbitarray.cpp
g++ -c -o qdir.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qdir.cpp
g++ -c -o qdiriterator.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qdiriterator.cpp
g++ -c -o quuid.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/plugin/quuid.cpp
g++ -c -o qhash.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qhash.cpp
g++ -c -o qfileinfo.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qfileinfo.cpp
g++ -c -o qdatetime.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qdatetime.cpp
g++ -c -o qstringlist.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qstringlist.cpp
g++ -c -o qabstractfileengine.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qabstractfileengine.cpp
g++ -c -o qtemporaryfile.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qtemporaryfile.cpp
g++ -c -o qmap.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qmap.cpp
g++ -c -o qmetatype.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/kernel/qmetatype.cpp
g++ -c -o qsettings.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qsettings.cpp
g++ -c -o qlibraryinfo.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global/qlibraryinfo.cpp
g++ -c -o qvariant.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/kernel/qvariant.cpp
g++ -c -o qvsnprintf.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qvsnprintf.cpp
g++ -c -o qlocale.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qlocale.cpp
g++ -c -o qlinkedlist.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qlinkedlist.cpp
g++ -c -o qurl.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/io/qurl.cpp
g++ -c -o qnumeric.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global/qnumeric.cpp
g++ -c -o qcryptographichash.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/tools/qcryptographichash.cpp
g++ -c -o qxmlstream.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml/qxmlstream.cpp
g++ -c -o qxmlutils.o -pipe -DQMAKE_OPENSOURCE_EDITION -I. -Igenerators -Igenerators/unix -Igenerators/win32 -Igenerators/mac -Igenerators/symbian -I/home/won/qt-everywhere-opensource-src-4.6.2/include -I/home/won/qt-everywhere-opensource-src-4.6.2/include/QtCore -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/global -I/home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml -DQT_NO_PCRE -DQT_BUILD_QMAKE -DQT_BOOTSTRAPPED -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_NO_COMPONENT -DQT_NO_STL -DQT_NO_COMPRESS -I/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-x86-g++ -DHAVE_QCONFIG_CPP -DQT_NO_THREAD -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT /home/won/qt-everywhere-opensource-src-4.6.2/src/corelib/xml/qxmlutils.cpp
g++ -o "/home/won/qt-everywhere-opensource-src-4.6.2/bin/qmake" project.o property.o main.o makefile.o unixmake2.o unixmake.o mingw_make.o option.o winmakefile.o projectgenerator.o meta.o makefiledeps.o metamakefile.o xmloutput.o pbuilder_pbx.o borland_bmake.o msvc_dsp.o msvc_vcproj.o msvc_nmake.o msvc_objectmodel.o symmake.o initprojectdeploy_symbian.o symmake_abld.o symmake_sbsv2.o qtextcodec.o qutfcodec.o qstring.o qtextstream.o qiodevice.o qmalloc.o qglobal.o qbytearray.o qbytearraymatcher.o qdatastream.o qbuffer.o qlist.o qfile.o qfsfileengine_unix.o qfsfileengine_iterator_unix.o qfsfileengine.o qfsfileengine_iterator.o qregexp.o qvector.o qbitarray.o qdir.o qdiriterator.o quuid.o qhash.o qfileinfo.o qdatetime.o qstringlist.o qabstractfileengine.o qtemporaryfile.o qmap.o qmetatype.o qsettings.o qlibraryinfo.o qvariant.o qvsnprintf.o qlocale.o qlinkedlist.o qurl.o qnumeric.o qcryptographichash.o qxmlstream.o qxmlutils.o
The tslib functionality test failed!
You might need to modify the include and library search paths by editing
QMAKE_INCDIR and QMAKE_LIBDIR in
/home/won/qt-everywhere-opensource-src-4.6.2/mkspecs//qws/linux-omap3-g++.
won@ubuntu:~/qt-everywhere-opensource-src-4.6.2$
won@ubuntu:~/qt-everywhere-opensource-src-4.6.2$

I have identified QMAKE_INCDIR and QMAKE_LIBDIR.

QMAKE_INCDIR += /home/won/workdir/filesys/include
QMAKE_LIBDIR += /home/won/workdir/filesys/lib

I would like to know the solution to this problem.

Please, Help me.