Skip to content
Snippets Groups Projects
Commit fa9b7c1b authored by Nicolas Noble's avatar Nicolas Noble Committed by GitHub
Browse files

Merge pull request #6334 from tberghammer/android-64bit

Add 64bit Android support
parents 2e67fee5 cb212557
No related branches found
No related tags found
No related merge requests found
......@@ -150,7 +150,11 @@
#elif defined(ANDROID) || defined(__ANDROID__)
#define GPR_PLATFORM_STRING "android"
#define GPR_ANDROID 1
#ifdef _LP64
#define GPR_ARCH_64 1
#else /* _LP64 */
#define GPR_ARCH_32 1
#endif /* _LP64 */
#define GPR_CPU_LINUX 1
#define GPR_GCC_SYNC 1
#define GPR_GCC_TLS 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment