Undo arm64 fix: was a local problem, after all.

This commit is contained in:
Unknown W. Brackets 2016-10-09 20:40:00 -07:00
parent d4ab4052f8
commit 5ab0db2cd3
2 changed files with 1 additions and 6 deletions

View file

@ -23,10 +23,6 @@
#if defined(__APPLE__) || defined(__SYMBIAN32__)
#define __thread
#endif
// Experiencing emutls crashes on ARM64 Android, so disabling for now.
#if defined(ANDROID) && !defined(ARM64)
#define __thread
#endif
#ifdef _WIN32
#include "CommonWindows.h"

View file

@ -1,8 +1,7 @@
#ifdef _WIN32
#include <windows.h>
#define TLS_SUPPORTED
// Experiencing emutls crashes on ARM64 Android, so disabling for now.
#elif defined(ANDROID) && !defined(ARM64)
#elif defined(ANDROID)
#define TLS_SUPPORTED
#endif