Merge "build.gradle: fix arm64 build"

This commit is contained in:
James Zern 2017-08-03 02:21:26 +00:00 committed by Gerrit Code Review
commit dcefed950b

View File

@ -82,7 +82,7 @@ model {
}
}
// Check for NEON usage.
if (getTargetPlatform() == "arm" || getTargetPlatform() == "arm64") {
if (getTargetPlatform() == "arm") {
NEON = "c.neon"
} else {
NEON = "c"