David
David

Reputation: 383

ndk compilation .so files and folders

I made a compilation and the result are 4 folders

In other compilation my result is

I need an .so for each folder, but Mips it´s for neon and x86 equals to vfp?

Upvotes: 0

Views: 58

Answers (1)

ph0b
ph0b

Reputation: 14473

neon is armv7 with NEON instructions support, not all armv7 devices support it. All armv7 android devices support VFP, so you're safe using armv7 or vfp for armeabi-v7a. armv6 is equivalent to Android armeabi.

x86 and mips are different architectures, you need a .so for these folders as well, but your other compilation doesn't seem to provide these out of the box ?

Upvotes: 2

Related Questions