Index: build/build_config.h |
diff --git a/build/build_config.h b/build/build_config.h |
index 57eb9a8cc288e777b580050704a77b559248b1ed..aeb1340879b7a17925b89e5f5debf6f51c275630 100644 |
--- a/build/build_config.h |
+++ b/build/build_config.h |
@@ -139,7 +139,7 @@ |
#error Please add support for your compiler in build/build_config.h |
#endif |
-#if defined(__ARMEL__) && !defined(OS_IOS) |
+#if (defined(__ARMEL__) || defined(__aarch64__)) && !defined(OS_IOS) |
#define WCHAR_T_IS_UNSIGNED 1 |
Nico
2014/04/23 18:18:12
This looks broken. The only user of this define th
rmcilroy
2014/04/24 09:58:41
That sounds much more sensible - done.
|
#elif defined(__MIPSEL__) |
#define WCHAR_T_IS_UNSIGNED 0 |