utilize configure results better in native builds

don't ignore detected features for host tools when we're not actually
cross-building.

Change-Id: Id62a3c1c6b7ae422b14efb4fbea0892b05a047cc
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Reviewed-by: René J.V. Bertin <rjvbertin@gmail.com>
This commit is contained in:
Oswald Buddenhagen 2017-01-19 21:54:41 +01:00
parent 8f960badfc
commit 5060740fa9
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ debug {
}
# disable special linker flags for host builds (no proper test for host support yet)
!host_build {
!host_build|!cross_compile {
use_gold_linker: QMAKE_LFLAGS += $$QMAKE_LFLAGS_USE_GOLD
enable_new_dtags: QMAKE_LFLAGS += $$QMAKE_LFLAGS_NEW_DTAGS
}

View File

@ -17,7 +17,7 @@ qtConfig(c++14): CONFIG += c++14
qtConfig(c++1z): CONFIG += c++1z
contains(TEMPLATE, .*lib) {
# module and plugins
!host_build:qtConfig(reduce_exports): CONFIG += hide_symbols
if(!host_build|!cross_compile):qtConfig(reduce_exports): CONFIG += hide_symbols
unix:qtConfig(reduce_relocations): CONFIG += bsymbolic_functions
qtConfig(separate_debug_info): CONFIG += separate_debug_info