build.gradle: fix arm64 build

only armv7-a uses .c.neon, arm64 has NEON by default; this matches the
Android.mk

Change-Id: Iee2bcf6a532cf54e31866d9db6923c3f0a1d88ba
This commit is contained in:
James Zern 2017-08-01 18:31:13 -07:00
parent 6cb13b0532
commit c71b68ac45

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"