Hi, I’m trying to include Android NDK headers in my .cs file
PublicIncludePaths.Add(“D:/NVPACK/android-ndk-r9c/platforms/android-19/arch-arm/usr/include”);
But when compiling an error occurrs
D:\NVPACK\android-ndk-r9c\platforms\android-19\arch-arm\usr\include\sys/cdefs.h(252): fatal error C1189: #error : "No function renaming possible"
Here’s the code from the line 252
#ifdef _lint_
#define __RENAME(x) __symbolrename(x)
#else
#error "No function renaming possible"
*#endif /* _lint_ /
I really don’t know what is happening