diff options
author | Pasi Pentikainen <pasi.a.pentikainen@nokia.com> | 2011-11-29 15:45:27 (GMT) |
---|---|---|
committer | Pasi Pentikainen <pasi.a.pentikainen@nokia.com> | 2011-11-29 15:46:45 (GMT) |
commit | 20a154ffc3afacdbc22d00a3c4dd0a2916a14e33 (patch) | |
tree | 998fe2f427bebe5d7cad02f51bf0ef02c8131e0e | |
parent | acaffe068f75161f6dd14ecbb0408cdf4c8fc287 (diff) | |
download | Qt-20a154ffc3afacdbc22d00a3c4dd0a2916a14e33.zip Qt-20a154ffc3afacdbc22d00a3c4dd0a2916a14e33.tar.gz Qt-20a154ffc3afacdbc22d00a3c4dd0a2916a14e33.tar.bz2 |
Symbian-linux crosscompilation configuration align
Change the configure-sh on Symbian linux crosscompilation to set rtti.
Reviewed-by: Oswald Buddenhagen
Task-number: QTBUG-14361
-rwxr-xr-x | configure | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -7443,9 +7443,10 @@ if [ "$CFG_EXCEPTIONS" != "no" ]; then QTCONFIG_CONFIG="$QTCONFIG_CONFIG exceptions" fi -if [ "$XPLATFORM_MINGW" = "yes" ]; then +if [ "$XPLATFORM_MINGW" = "yes" ] || [ "$XPLATFORM_SYMBIAN" = "yes" ]; then # mkspecs/features/win32/default_pre.prf sets "no-rtti". - # Follow default behavior of configure.exe by overriding with "rtti". + # Follow default behavior of configure.exe by overriding with "rtti" + # (also on Symbian). QTCONFIG_CONFIG="$QTCONFIG_CONFIG rtti" fi |