FindJNI: Add aarch32 path on arm

This commit is contained in:
Orion Poplawski 2016-09-26 21:32:24 -06:00 committed by Brad King
parent 1a5fddfe6d
commit 59eb75d9d2
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ macro(java_append_library_directories _var)
set(_java_libarch "alpha")
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
# Subdir is "arm" for both big-endian (arm) and little-endian (armel).
set(_java_libarch "arm")
set(_java_libarch "arm" "aarch32")
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^mips")
# mips* machines are bi-endian mostly so processor does not tell
# endianess of the underlying system.