diff options
author | axis <qt-info@nokia.com> | 2009-04-27 09:06:34 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-08-06 16:03:05 (GMT) |
commit | 7cd9b8dee99cec502b1498adf54832c3247213f3 (patch) | |
tree | 4e9a7f594b0c384b13680e6c57b9ef840536b58c /src/corelib | |
parent | 36fce9a00b9efbf9c7834454825c275c4bb53820 (diff) | |
download | Qt-7cd9b8dee99cec502b1498adf54832c3247213f3.zip Qt-7cd9b8dee99cec502b1498adf54832c3247213f3.tar.gz Qt-7cd9b8dee99cec502b1498adf54832c3247213f3.tar.bz2 |
Enable symbol visibility when compiling with RVCT.
This takes advantage of new functionality in RVCT 2.2, and requires
build 683 beta or later.
Diffstat (limited to 'src/corelib')
-rw-r--r-- | src/corelib/global/qglobal.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/global/qglobal.h b/src/corelib/global/qglobal.h index 9b93306..19a24af 100644 --- a/src/corelib/global/qglobal.h +++ b/src/corelib/global/qglobal.h @@ -1156,7 +1156,7 @@ class QDataStream; #ifndef Q_DECL_EXPORT # ifdef Q_OS_WIN # define Q_DECL_EXPORT __declspec(dllexport) -# elif defined(Q_CC_NOKIAX86) +# elif defined(Q_CC_NOKIAX86) || defined(Q_CC_RVCT) # define Q_DECL_EXPORT __declspec(dllexport) # elif defined(QT_VISIBILITY_AVAILABLE) # define Q_DECL_EXPORT __attribute__((visibility("default"))) @@ -1168,7 +1168,7 @@ class QDataStream; #ifndef Q_DECL_IMPORT # if defined(Q_OS_WIN) # define Q_DECL_IMPORT __declspec(dllimport) -# elif defined(Q_CC_NOKIAX86) +# elif defined(Q_CC_NOKIAX86) || defined(Q_CC_RVCT) # define Q_DECL_IMPORT __declspec(dllimport) # else # define Q_DECL_IMPORT |