Bullet doesn't work for 64-bit iOS

Post Reply
ed_welch
Posts: 43
Joined: Wed Mar 04, 2015 6:16 pm

Bullet doesn't work for 64-bit iOS

Post 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__
Post Reply