539f90e971
Change-Id: If3d42a6b3ad361c8a11b4eee8dd17be0e58d9192 Reviewed-by: Fabian Bumberger <fbumberger@rim.com> Reviewed-by: Bernd Weimer <bweimer@blackberry.com> Reviewed-by: Thomas McGuire <thomas.mcguire@kdab.com>
24 lines
622 B
Plaintext
24 lines
622 B
Plaintext
#
|
|
# qmake configuration for blackberry armv7le systems
|
|
#
|
|
|
|
load(qt_config)
|
|
|
|
DEFINES += Q_OS_BLACKBERRY
|
|
CONFIG += blackberry
|
|
LIBS += -lbps
|
|
|
|
# Blackberry also has support for stack smashing protection in its libc
|
|
contains(QT_CONFIG, stack-protector-strong) {
|
|
QMAKE_CFLAGS += -fstack-protector-strong
|
|
} else {
|
|
QMAKE_CFLAGS += -fstack-protector -fstack-protector-all
|
|
}
|
|
|
|
QMAKE_CFLAGS += -mcpu=cortex-a9 -mtune=cortex-a9 -mthumb -D_FORTIFY_SOURCE=2
|
|
QMAKE_CXXFLAGS += -mcpu=cortex-a9 -mtune=cortex-a9 -mthumb -D_FORTIFY_SOURCE=2
|
|
|
|
QMAKE_LFLAGS_SHLIB += -Wl,-z,relro -Wl,-z,now
|
|
|
|
include(../common/qcc-base-qnx-armv7le.conf)
|