Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brecht@blender.org>2021-02-15 19:41:30 +0300
committerBrecht Van Lommel <brecht@blender.org>2021-02-15 22:22:34 +0300
commit4ce57f6eb82c0c6d3a23201c8df008d29b18b5f7 (patch)
treeb6a65cf510f811de1483787d2310993e269d067b /intern/cycles/util
parent7baf796886b26e638c87c8c6533b7dc6e9b3803c (diff)
macOS: fix Cycles not detecting 64 bit and failing to build with Embree
Contributed by Apple Ref D9527, T78710
Diffstat (limited to 'intern/cycles/util')
-rw-r--r--intern/cycles/util/util_defines.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/util/util_defines.h b/intern/cycles/util/util_defines.h
index e8e414587fb..0a239a944a5 100644
--- a/intern/cycles/util/util_defines.h
+++ b/intern/cycles/util/util_defines.h
@@ -26,7 +26,7 @@
/* Bitness */
#if defined(__ppc64__) || defined(__PPC64__) || defined(__x86_64__) || defined(__ia64__) || \
- defined(_M_X64)
+ defined(_M_X64) || defined(__aarch64__)
# define __KERNEL_64_BIT__
#endif