Skip to content

Commit 0a8fa41

Browse files
Thomas HouThomas Hou
authored andcommitted
Bullet con't support ARM64 NEOM, so forbidden NEON on ARM64.
1 parent 1b79e4a commit 0a8fa41

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bullet/LinearMath/btScalar.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ inline int btGetVersion()
180180
#include <emmintrin.h>
181181
#endif
182182
#endif //BT_USE_SSE
183-
#elif defined( __ARM_NEON__ )
183+
#elif defined( __ARM_NEON__ ) && (!defined( __arm64__ ))
184184
#ifdef __clang__
185185
#define BT_USE_NEON 1
186186
#define BT_USE_SIMD_VECTOR3

0 commit comments

Comments
 (0)