43a22ee83e
this meant that the common mkspec was unable to do 'sensible' things with the cflags (hence -Wno-psabi not being applied to C++ code), and probably explains a lot of other weird things. Change-Id: I77079027dc1b2691c53212893eb90c7b935d00a2 Reviewed-by: Girish Ramakrishnan <girish.1.ramakrishnan@nokia.com>
15 lines
610 B
Plaintext
15 lines
610 B
Plaintext
#
|
|
# qmake configuration for building with android-g++ for ARMv5
|
|
#
|
|
|
|
ANDROID_TARGET_ARCH = armeabi
|
|
ANDROID_ARCHITECTURE = arm
|
|
ANDROID_NDK_TOOLCHAIN_PREFIX = arm-linux-androideabi
|
|
ANDROID_NDK_TOOLS_PREFIX = arm-linux-androideabi
|
|
QMAKE_CFLAGS = -Wno-psabi -march=armv5te -mtune=xscale -msoft-float -fpic -ffunction-sections -funwind-tables -fstack-protector -fno-short-enums -DANDROID -Wa,--noexecstack
|
|
QMAKE_CFLAGS_RELEASE = -g -mthumb -Os -fomit-frame-pointer -fno-strict-aliasing -finline-limit=64
|
|
QMAKE_CFLAGS_DEBUG = -g -marm -O0 -fno-omit-frame-pointer
|
|
|
|
include(../../common/linux-android.conf)
|
|
|