diff options
author | axis <qt-info@nokia.com> | 2011-04-07 10:56:14 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2011-04-07 13:17:52 (GMT) |
commit | 2310cbe07b8f7de64d47fe825e0f5a49359923d8 (patch) | |
tree | 0a7433c3bb78f6dd0543f8bf5dc1bc799df5e291 /configure | |
parent | e5d27e7aeac984e46f3aa8de20160cc00fc63155 (diff) | |
download | Qt-2310cbe07b8f7de64d47fe825e0f5a49359923d8.zip Qt-2310cbe07b8f7de64d47fe825e0f5a49359923d8.tar.gz Qt-2310cbe07b8f7de64d47fe825e0f5a49359923d8.tar.bz2 |
Disable DEF files by default for symbian-gcce.
elf2e32 crashes when using it, and gcce will not produce matching
symbols anyway. It can still be turned on manually by specifying
-use-deffiles.
Reviewed-by: Liang Qi
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5121,7 +5121,8 @@ if [ "$CFG_QS60STYLE" = "auto" ]; then fi if [ "$CFG_SYMBIAN_DEFFILES" = "auto" ]; then - if [ "$XPLATFORM_SYMBIAN" = "yes" ] && [ "$CFG_DEV" = "no" ]; then + # elf2e32 crashes when using def files together with gcce. + if [ "$XPLATFORM_SYMBIAN" = "yes" ] && [ "$CFG_DEV" = "no" ] && [ "$XPLATFORM" != "symbian-gcce" ]; then CFG_SYMBIAN_DEFFILES=yes else CFG_SYMBIAN_DEFFILES=no |