Changeset 769 for trunk/mkspecs/features/symbian/stl.prf
- Timestamp:
- Aug 2, 2010, 9:27:30 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.6.3 (added) merged: 768 /branches/vendor/nokia/qt/current merged: 767 /branches/vendor/nokia/qt/4.6.2 removed
- Property svn:mergeinfo changed
-
trunk/mkspecs/features/symbian/stl.prf
r561 r769 16 16 17 17 # libstdcppv5 is preferred over libstdcpp as it has/uses the throwing version of operator new 18 exists($${EPOCROOT}epoc32/release/armv5/urel/libstdcppv5.dll)|exists($${EPOCROOT}epoc32/release/winscw/udeb/libstdcppv5.dll) { 19 LIBS *= -llibstdcppv5.dll 18 STL_LIB = -llibstdcppv5.dll 20 19 21 # STDCPP turns on standard C++ new behaviour (ie. throwing new) 22 MMP_RULES += "STDCPP" 23 } else { 24 LIBS *= -llibstdcpp.dll 20 # STDCPP turns on standard C++ new behaviour (ie. throwing new) 21 STL_MMP_RULE = "STDCPP" 22 23 # Fall back to old implementation if that is the only one that is found 24 exists($${EPOCROOT}epoc32/release/armv5/urel/libstdcpp.dll)|exists($${EPOCROOT}epoc32/release/winscw/udeb/libstdcpp.dll) { 25 !exists($${EPOCROOT}epoc32/release/armv5/urel/libstdcppv5.dll):!exists($${EPOCROOT}epoc32/release/winscw/udeb/libstdcppv5.dll) { 26 STL_LIB = -llibstdcpp.dll 27 STL_MMP_RULE = 28 } 25 29 } 30 31 LIBS *= $$STL_LIB 32 MMP_RULES *= $$STL_MMP_RULE
Note:
See TracChangeset
for help on using the changeset viewer.