diff options
author | Orion Poplawski <orion@cora.nwra.com> | 2016-09-27 03:32:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-09-27 12:31:02 (GMT) |
commit | 59eb75d9d2b538f3b1810635f193366e9aeef5d1 (patch) | |
tree | 853c6bc5b1901f3cd3ac1f892f2ef4a645ee1b22 /Modules/FindJNI.cmake | |
parent | 1a5fddfe6d56733528ace3d15899b0739ea28054 (diff) | |
download | CMake-59eb75d9d2b538f3b1810635f193366e9aeef5d1.zip CMake-59eb75d9d2b538f3b1810635f193366e9aeef5d1.tar.gz CMake-59eb75d9d2b538f3b1810635f193366e9aeef5d1.tar.bz2 |
FindJNI: Add aarch32 path on arm
Diffstat (limited to 'Modules/FindJNI.cmake')
-rw-r--r-- | Modules/FindJNI.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindJNI.cmake b/Modules/FindJNI.cmake index 658d6ca..285b965 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. |