diff --git a/hello-neon/app/src/main/cpp/CMakeLists.txt b/hello-neon/app/src/main/cpp/CMakeLists.txt index c2de1aab4..0b1c5c495 100644 --- a/hello-neon/app/src/main/cpp/CMakeLists.txt +++ b/hello-neon/app/src/main/cpp/CMakeLists.txt @@ -27,6 +27,9 @@ elseif (${ANDROID_ABI} STREQUAL "x86") -Wno-constant-conversion \ -Wno-static-in-inline") add_definitions(-DHAVE_NEON_X86=1 -DHAVE_NEON=1) +elseif (${ANDROID_ABI} STREQUAL "x86_64") + set(neon_SRCS helloneon-intrinsics.c) + add_definitions(-DHAVE_NEON_X86=1 -DHAVE_NEON=1) else () set(neon_SRCS helloneon-intrinsics.c) add_definitions("-DHAVE_NEON=1")