Fix 10622. Always add epco32\include to search paths when preprocessing varint HRH
--- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SymbianBuildContext.java Thu Jan 28 11:52:34 2010 -0600
+++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SymbianBuildContext.java Thu Jan 28 13:16:40 2010 -0600
@@ -398,9 +398,12 @@
}
if (prefixFile != null) {
-
+
+ List<File> systemPaths = new ArrayList<File>();
+ // Always add epoc32/include to the search path as this is implicit for includes in the HRH
+ systemPaths.add(new File(getSDK().getEPOCROOT() + "epoc32/include"));
+
// add any BSF/SBV includes so the headers are picked up from the correct location
- List<File> systemPaths = new ArrayList<File>();
IBSFPlatform bsfPlat = getSDK().getBSFCatalog().findPlatform(platform);
ISBVPlatform sbvPlat = getSDK().getSBVCatalog().findPlatform(platform);
if (bsfPlat != null) {