Revert "configure: Change default of CFG_REDUCE_RELOCATIONS to "no"."

This reverts commit d0eba497c1c34d35ddda2b5d44902ebd636d4f9e.

A better fix is to use -fPIC instead of just -fPIE fo
-reduce-relocations.

Task-number: QTBUG-45755
Change-Id: I1759291b684fd76d4009e4be9ba1354eb056e659
Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
This commit is contained in:
Friedemann Kleint 2015-05-07 08:34:19 +02:00 committed by Simon Hausmann
parent b64e87f2ed
commit ace86dca15
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -674,7 +674,7 @@ CFG_SSE4_1=auto
CFG_SSE4_2=auto CFG_SSE4_2=auto
CFG_AVX=auto CFG_AVX=auto
CFG_AVX2=auto CFG_AVX2=auto
CFG_REDUCE_RELOCATIONS=no CFG_REDUCE_RELOCATIONS=auto
CFG_ACCESSIBILITY=auto CFG_ACCESSIBILITY=auto
CFG_ACCESSIBILITY_ATSPI_BRIDGE=no # will be enabled depending on dbus and accessibility being enabled CFG_ACCESSIBILITY_ATSPI_BRIDGE=no # will be enabled depending on dbus and accessibility being enabled
CFG_NEON=auto CFG_NEON=auto

View File

@ -1696,7 +1696,7 @@ void Configure::applySpecSpecifics()
dictionary[ "LARGE_FILE" ] = "no"; dictionary[ "LARGE_FILE" ] = "no";
dictionary[ "ANGLE" ] = "no"; dictionary[ "ANGLE" ] = "no";
dictionary[ "DYNAMICGL" ] = "no"; dictionary[ "DYNAMICGL" ] = "no";
dictionary[ "REDUCE_RELOCATIONS" ] = "no"; dictionary[ "REDUCE_RELOCATIONS" ] = "yes";
dictionary[ "QT_GETIFADDRS" ] = "no"; dictionary[ "QT_GETIFADDRS" ] = "no";
dictionary[ "QT_XKBCOMMON" ] = "no"; dictionary[ "QT_XKBCOMMON" ] = "no";
dictionary["ANDROID_STYLE_ASSETS"] = "yes"; dictionary["ANDROID_STYLE_ASSETS"] = "yes";