summaryrefslogtreecommitdiff
path: root/Modules/FindJNI.cmake
diff options
context:
space:
mode:
authorOrion Poplawski <orion@cora.nwra.com>2016-09-26 21:32:24 -0600
committerBrad King <brad.king@kitware.com>2016-09-27 08:31:02 -0400
commit59eb75d9d2b538f3b1810635f193366e9aeef5d1 (patch)
tree853c6bc5b1901f3cd3ac1f892f2ef4a645ee1b22 /Modules/FindJNI.cmake
parent1a5fddfe6d56733528ace3d15899b0739ea28054 (diff)
downloadcmake-59eb75d9d2b538f3b1810635f193366e9aeef5d1.tar.gz
FindJNI: Add aarch32 path on arm
Diffstat (limited to 'Modules/FindJNI.cmake')
-rw-r--r--Modules/FindJNI.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindJNI.cmake b/Modules/FindJNI.cmake
index 658d6ca901..285b965d6b 100644
--- a/Modules/FindJNI.cmake
+++ b/Modules/FindJNI.cmake
@@ -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.