# HG changeset patch # User timkelly # Date 1264702171 21600 # Node ID c92830672f75e69cfeb5b9a0b58548a94992c86a # Parent ba25abd590600d5586d1207fe2cfad016f506ea9 Fix 10622. Always add epco32\include to search paths when preprocessing varint HRH diff -r ba25abd59060 -r c92830672f75 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SymbianBuildContextDataCache.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SymbianBuildContextDataCache.java Tue Jan 26 14:36:17 2010 -0600 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SymbianBuildContextDataCache.java Thu Jan 28 12:09:31 2010 -0600 @@ -181,9 +181,12 @@ File[] includedFiles = null; if (prefixFile != null) { - + + List systemPaths = new ArrayList(); + // Always add epoc32/include to the search path as this is implicit for includes in the HRH + systemPaths.add(new File(sdk.getEPOCROOT() + "epoc32/include")); + // add any BSF/SBV includes so the headers are picked up from the correct location - List systemPaths = new ArrayList(); IBSFPlatform bsfPlat = sdk.getBSFCatalog().findPlatform(platformString); ISBVPlatform sbvPlat = sdk.getSBVCatalog().findPlatform(platformString); if (bsfPlat != null) {