summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authoraxis <qt-info@nokia.com>2011-04-07 10:56:14 (GMT)
committeraxis <qt-info@nokia.com>2011-04-07 13:17:52 (GMT)
commit2310cbe07b8f7de64d47fe825e0f5a49359923d8 (patch)
tree0a7433c3bb78f6dd0543f8bf5dc1bc799df5e291 /configure
parente5d27e7aeac984e46f3aa8de20160cc00fc63155 (diff)
downloadQt-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-xconfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure b/configure
index 1369b82..700a486 100755
--- a/configure
+++ b/configure
@@ -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