diff options
author | Iain <qt-info@nokia.com> | 2009-06-04 10:11:59 (GMT) |
---|---|---|
committer | Iain <qt-info@nokia.com> | 2009-08-19 06:54:03 (GMT) |
commit | 3938464eb37a395acfd135e66c722eddf6d6ed1a (patch) | |
tree | dfefda2c75ee50ab3765d61673ac46ea542b6d24 /mkspecs | |
parent | a1cfdc273bac90d58754c286810353ccb0be4b2e (diff) | |
download | Qt-3938464eb37a395acfd135e66c722eddf6d6ed1a.zip Qt-3938464eb37a395acfd135e66c722eddf6d6ed1a.tar.gz Qt-3938464eb37a395acfd135e66c722eddf6d6ed1a.tar.bz2 |
Ensure the correct set of symbols are exported in the DEF files (part 1)
For DLLs using Qt-style class level exports, ensure that only public
symbols are exported
For static libraries (static, staticlib configs) we don't want/need/
can't have a DEF file
Diffstat (limited to 'mkspecs')
-rw-r--r-- | mkspecs/common/symbian/symbian.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mkspecs/common/symbian/symbian.conf b/mkspecs/common/symbian/symbian.conf index af2be8f..3ba2a8c 100644 --- a/mkspecs/common/symbian/symbian.conf +++ b/mkspecs/common/symbian/symbian.conf @@ -106,7 +106,8 @@ QMAKE_STRIPFLAGS_LIB += --strip-unneeded load(qt_config) load(platform_paths) -MMP_RULES += EXPORTUNFROZEN PAGED +MMP_RULES += PAGED +MMP_RULES += "OPTION_REPLACE ARMCC --export_all_vtbl // don't use --export_all_vtbl" SYMBIAN_PLATFORMS = WINSCW GCCE ARMV5 ARMV6 # Legacy support requires some hardcoded stdapis paths. |