author | eckhart.koppen@nokia.com |
Wed, 31 Mar 2010 11:06:36 +0300 | |
changeset 7 | f7bc934e204c |
parent 0 | 1918ee327afb |
permissions | -rw-r--r-- |
0 | 1 |
CONFIG -= stl_off |
2 |
||
3 |
# STL usage in S60 requires the "OPTION CW -wchar_t on" mmp statement to be used. |
|
4 |
# This statement is added via $$STLLIB_USAGE_CW_FLAGS variable below. |
|
5 |
# S60 STL documentation instructs to use also "MACRO _WCHAR_T_DECLARED" statement, |
|
6 |
# but QtS60 will not compile if that statement is set. |
|
7 |
||
8 |
QMAKE_CXXFLAGS.CW *= $$STLLIB_USAGE_CW_FLAGS |
|
9 |
||
10 |
# Path to stlport headers |
|
11 |
INCLUDEPATH += $$OS_LAYER_STDCPP_SYSTEMINCLUDE |
|
12 |
||
13 |
# Remove mkspecs/common/symbian/stl-off from beginning of includepath |
|
14 |
# in order to use new and delete operators from STL |
|
15 |
INCLUDEPATH -= $$[QT_INSTALL_PREFIX]/mkspecs/common/symbian/stl-off |
|
16 |
||
17 |
# libstdcppv5 is preferred over libstdcpp as it has/uses the throwing version of operator new |
|
7
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
18 |
STL_LIB = -llibstdcppv5.dll |
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
19 |
|
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
20 |
# STDCPP turns on standard C++ new behaviour (ie. throwing new) |
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
21 |
STL_MMP_RULE = "STDCPP" |
0 | 22 |
|
7
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
23 |
# Fall back to old implementation if that is the only one that is found |
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
24 |
exists($${EPOCROOT}epoc32/release/armv5/urel/libstdcpp.dll)|exists($${EPOCROOT}epoc32/release/winscw/udeb/libstdcpp.dll) { |
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
25 |
!exists($${EPOCROOT}epoc32/release/armv5/urel/libstdcppv5.dll):!exists($${EPOCROOT}epoc32/release/winscw/udeb/libstdcppv5.dll) { |
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
26 |
STL_LIB = -llibstdcpp.dll |
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
27 |
STL_MMP_RULE = |
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
28 |
} |
0 | 29 |
} |
7
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
30 |
|
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
31 |
LIBS *= $$STL_LIB |
f7bc934e204c
5cabc75a39ca2f064f70b40f72ed93c74c4dc19b
eckhart.koppen@nokia.com
parents:
0
diff
changeset
|
32 |
MMP_RULES *= $$STL_MMP_RULE |