38be0d1383
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
#
|
|
# qmake configuration for linux-armcc
|
|
#
|
|
|
|
MAKEFILE_GENERATOR = UNIX
|
|
TARGET_PLATFORM = unix
|
|
TEMPLATE = app
|
|
CONFIG += qt warn_on release incremental link_prl armcc_linker
|
|
QT += core gui
|
|
QMAKE_INCREMENTAL_STYLE = sublib
|
|
|
|
include(../../common/linux.conf)
|
|
include(../../common/armcc.conf)
|
|
load(qt_config)
|
|
|
|
# use armcc for linking since armlink doesn't understand the arm_linux_config_file option
|
|
QMAKE_LINK = armcc
|
|
QMAKE_LINK_SHLIB = armcc
|
|
QMAKE_LINK_C = armcc
|
|
QMAKE_LINK_C_SHLIB = armcc
|
|
|
|
QMAKE_LFLAGS_SHLIB += --apcs=/fpic --shared
|
|
QMAKE_LFLAGS_PLUGIN = $$QMAKE_LFLAGS_SHLIB
|
|
|
|
QMAKE_LIBS += libstdc++.so librt.so
|
|
|
|
CONFIG -= rvct_linker
|
|
|
|
QMAKE_CFLAGS += --gnu --arm_linux --dllimport_runtime --thumb --cpu Cortex-A9 --arm_linux_config_file="$(HOME)/qt_rvct_config" --arm-linux-paths --apcs=/interwork --visibility_inlines_hidden --diag_suppress 1300,2523
|
|
QMAKE_CXXFLAGS += $$QMAKE_CFLAGS --cpp
|
|
|
|
QMAKE_LFLAGS += --diag_suppress 6331,6780,6439 --arm_linux_config_file="$(HOME)/qt_rvct_config" --arm-linux-paths
|