문제

I made a compilation and the result are 4 folders

  • armeabi
  • armeabi-v7a
  • mips
  • x86

In other compilation my result is

  • armv6
  • armv7
  • neon
  • vfp

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

도움이 되었습니까?

해결책

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 ?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top