diff options
Diffstat (limited to 'mkspecs')
-rw-r--r-- | mkspecs/blackberry-armv7le-qcc/qmake.conf | 3 | ||||
-rw-r--r-- | mkspecs/blackberry-x86-qcc/qmake.conf | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/mkspecs/blackberry-armv7le-qcc/qmake.conf b/mkspecs/blackberry-armv7le-qcc/qmake.conf index a48d8fe..98daef1 100644 --- a/mkspecs/blackberry-armv7le-qcc/qmake.conf +++ b/mkspecs/blackberry-armv7le-qcc/qmake.conf @@ -13,8 +13,11 @@ LIBS += -lbps # Blackberry also has support for stack smashing protection in its libc contains(QT_CONFIG, stack-protector-strong) { QMAKE_CFLAGS += -fstack-protector-strong + QMAKE_CXXFLAGS += -fstack-protector-strong } else { QMAKE_CFLAGS += -fstack-protector -fstack-protector-all + QMAKE_CXXFLAGS += -fstack-protector -fstack-protector-all } QMAKE_CFLAGS += -mcpu=cortex-a9 +QMAKE_CXXFLAGS += -mcpu=cortex-a9 diff --git a/mkspecs/blackberry-x86-qcc/qmake.conf b/mkspecs/blackberry-x86-qcc/qmake.conf index 45d6c4b..26bf509 100644 --- a/mkspecs/blackberry-x86-qcc/qmake.conf +++ b/mkspecs/blackberry-x86-qcc/qmake.conf @@ -13,6 +13,8 @@ LIBS += -lbps # Blackberry also has support for stack smashing protection in its libc contains(QT_CONFIG, stack-protector-strong) { QMAKE_CFLAGS += -fstack-protector-strong + QMAKE_CXXFLAGS += -fstack-protector-strong } else { QMAKE_CFLAGS += -fstack-protector -fstack-protector-all + QMAKE_CXXFLAGS += -fstack-protector -fstack-protector-all } |