Skip to content

Commit

Permalink
FIX Android: On newer kernels neon cpu feature is represented as asimd
Browse files Browse the repository at this point in the history
  • Loading branch information
Stane1983 committed Jan 31, 2016
1 parent 7f8b964 commit 18f490b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -737,7 +737,7 @@ public class Splash extends Activity {
Log.e(TAG, mErrorMsg);
mState = InError;
} else {
ret = CheckCpuFeature("neon") || CheckCpuFeature("aarch64"); //aarch64 is always neon
ret = CheckCpuFeature("neon") || CheckCpuFeature("aarch64") || CheckCpuFeature("asimd"); // aarch64 is always neon; asimd feature also represents neon
if (!ret) {
mErrorMsg = "This @APP_NAME@ package is not compatible with your device (NEON).\nPlease check the <a href=\"http://wiki.kodi.tv/index.php?title=XBMC_for_Android_specific_FAQ\">Kodi Android wiki</a> for more information.";
Log.e(TAG, mErrorMsg);
Expand Down

0 comments on commit 18f490b

Please sign in to comment.