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:
authorMatteo F. Vescovi <mfvescovi@gmail.com>2014-03-24 11:48:07 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-06-02 14:27:09 +0400
commit4b2c8261782b62199235dd80fb4690e2721f3ed9 (patch)
tree23bd2c135532a0f37bcfd2bddf14dbff80891d48 /intern/atomic
parent9b23d9acec9aa88f1d810a40816b83b8d94df44b (diff)
Fix compilation on unofficial 64bit archs
Diffstat (limited to 'intern/atomic')
-rw-r--r--intern/atomic/atomic_ops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/atomic/atomic_ops.h b/intern/atomic/atomic_ops.h
index b5a73b1ef87..bb55ac1a11f 100644
--- a/intern/atomic/atomic_ops.h
+++ b/intern/atomic/atomic_ops.h
@@ -61,7 +61,7 @@
# endif
#endif
-#if defined(_M_X64) || defined(__amd64__) || defined(__x86_64__)
+#if defined(_M_X64) || defined(__amd64__) || defined(__x86_64__) || defined(__s390x__) || defined(__powerpc64__) || defined(__aarch64__) || (defined(__sparc__) && defined(__arch64__))
# define LG_SIZEOF_PTR 3
# define LG_SIZEOF_INT 2
#else