# HG changeset patch # User timkelly # Date 1264706200 21600 # Node ID d445ac5a58a19bea6d9f4e35243aba7276b14156 # Parent 12b72acf0db702098ee896087f718b788b90feb2 Fix 10622. Always add epco32\include to search paths when preprocessing varint HRH diff -r 12b72acf0db7 -r d445ac5a58a1 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/api/sdk/SymbianBuildContext.java --- 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 systemPaths = new ArrayList(); + // 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 systemPaths = new ArrayList(); IBSFPlatform bsfPlat = getSDK().getBSFCatalog().findPlatform(platform); ISBVPlatform sbvPlat = getSDK().getSBVCatalog().findPlatform(platform); if (bsfPlat != null) {