We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1499b14 commit f88df62Copy full SHA for f88df62
cmake/FindRust.cmake
@@ -735,10 +735,10 @@ if (NOT Rust_CARGO_TARGET_CACHED)
735
endif()
736
elseif (ANDROID)
737
if (CMAKE_ANDROID_ARCH_ABI STREQUAL armeabi-v7a)
738
- if (CMAKE_ANDROID_ARM_MODE)
739
- set(_Rust_ANDROID_TARGET armv7-linux-androideabi)
740
- else ()
+ if (CMAKE_ANDROID_ARM_NEON)
741
set(_Rust_ANDROID_TARGET thumbv7neon-linux-androideabi)
+ else ()
+ set(_Rust_ANDROID_TARGET armv7-linux-androideabi)
742
743
elseif (CMAKE_ANDROID_ARCH_ABI STREQUAL arm64-v8a)
744
set(_Rust_ANDROID_TARGET aarch64-linux-android)
0 commit comments