Prebuild header files for speeding up the Android build

Hi~ Since our project became bigger and bigger, the compile time became longer and longer, we brought in precompiled header file to speed up the compile time, it works on Win32 platform, but we can’t find way for Android version, I was trying to enable it with NDK makefile, but it seems not working…

Would anyone has experience on that field? or I just did something wrong.
Any suggestion would be helpful~~Thank you

Hi,

Any progres?
I found that http://stackoverflow.com/a/13623864/4514853
It seems that with NDK 13b it works. Below created for me precompiled header, but I have error on usage precompiled header inside my code.
PCH_FILE := symroot/src/Prefix.h
LOCAL_PCH := $(PCH_FILE)
LOCAL_CPPFLAGS += -DPCH

Regards,
CHP