I’m trying to compile ofxBullet (v2.2) to an iPad running iOS 9.3 and I’m receiving a number of errors in btVector3.cpp:
Expect relocation specifier in operand after ‘:’ - ln 1082, 1093-1096, 1119-1122
Invalid Operand - ln 1082, 1093-1096, 1119-1122
float32x4_t vvec = vld1q_f32_aligned_postincrement( vec );
float32x4_t v0 = vld1q_f32_aligned_postincrement( vv );
float32x4_t v1 = vld1q_f32_aligned_postincrement( vv );
float32x4_t v2 = vld1q_f32_aligned_postincrement( vv );
float32x4_t v3 = vld1q_f32_aligned_postincrement( vv );
v0 = vld1q_f32_aligned_postincrement( vv );
v1 = vld1q_f32_aligned_postincrement( vv );
v2 = vld1q_f32_aligned_postincrement( vv );
v3 = vld1q_f32_aligned_postincrement( vv );
In my particular case I’ve managed to build out a game for Mac OS, and I’m trying to port it to an iPad. I haven’t written any code yet, just trying to compile with the addon installed. Downloaded the latest from Github today. Anyone have any recommendations? Thanks!