Thanks for the answer! Yes, I have edited 'qmake.conf' file just like Trey described in his tutorial. Everything looks correct for me, but maybe you will find some mistake... Here is my current version of 'qmake.conf':
# > # qmake configuration for building with arm-linux-g++ > # > > include(../../common/g++-unix.conf) > include(../../common/linux.conf) > include(../../common/qws.conf) > > # modifications to g++.conf > # Toolchain > > #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 = /usr/bin/arm-linux-gnueabi-gcc > QMAKE_CXX = /usr/bin/arm-linux-gnueabi-g++ > QMAKE_LINK = /usr/bin/arm-linux-gnueabi-g++ > QMAKE_LINK_SHLIB = /usr/bin/arm-linux-gnueabi-g++ > > # modifications to linux.conf > QMAKE_AR = /usr/bin/arm-linux-gnueabi-ar cqs > QMAKE_OBJCOPY = /usr/bin/arm-linux-gnueabi-objcopy > QMAKE_STRIP = /usr/bin/arm-linux-gnueabi-strip > > load(qt_config) > I replaced 'g++.conf' with 'g++-unix.conf'. All the paths are correct. -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
