Page 1 of 1

Bullet doesn't work for 64-bit iOS

Posted: Sun Jan 29, 2017 3:10 pm
by ed_welch
I just discovered that bullet doesn't work on 64-bit iOS devices. You get some weird compiler error when you try to link:
"Error parsing inline asm vld1.f32 {v3}, [x1, :128]!"
disabling neon fixes this problem
I disabled neon by commenting out the following lines in btScaler.h
/ #ifdef __clang__
// #define BT_USE_NEON 1
// #define BT_USE_SIMD_VECTOR3
//
// #if defined BT_USE_NEON && defined (__clang__)
// #include <arm_neon.h>
// #endif//BT_USE_NEON
// #endif //__clang__