a668c6a6b6
... to the new qmake based configuration system. This removes the old qfeatures.txt (distributed over configure.json files) and qfeatures.h (distributed over qconfig-<module>.h files). qfeatures.prf is gone without replacement, as attempts to use it would lead to followup errors anyway. Change-Id: I1598de19db937082283a905b9592d3849d2199d0 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
18 lines
438 B
Plaintext
18 lines
438 B
Plaintext
#
|
|
# qmake configuration for qnx aarch64le systems
|
|
#
|
|
|
|
DEFINES += _FORTIFY_SOURCE=2
|
|
|
|
QMAKE_LFLAGS_SHLIB += -Wl,-z,relro -Wl,-z,now
|
|
|
|
include(../common/qcc-base-qnx-aarch64le.conf)
|
|
|
|
qtConfig(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
|
|
}
|