summaryrefslogtreecommitdiffstats
path: root/Modules/FindJNI.cmake
diff options
context:
space:
mode:
authorYunqiang Su <wzssyqa@gmail.com>2015-08-28 13:37:06 (GMT)
committerBrad King <brad.king@kitware.com>2015-08-28 13:37:22 (GMT)
commit90a22c3ac5d38a83d4d487030277db4021c1913a (patch)
tree79c6f77ea7aeb33c37745d57f67fd427653dddd0 /Modules/FindJNI.cmake
parent11d5088a2f02994dc14c72170c73f7d60b0fba03 (diff)
downloadCMake-90a22c3ac5d38a83d4d487030277db4021c1913a.zip
CMake-90a22c3ac5d38a83d4d487030277db4021c1913a.tar.gz
CMake-90a22c3ac5d38a83d4d487030277db4021c1913a.tar.bz2
FindJNI: Add mips64(el) mipsn32(el) support (#15714)
Submitted-by: Felix Geyer <fgeyer@debian.org>
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 6958a2a..cbe21d7 100644
--- a/Modules/FindJNI.cmake
+++ b/Modules/FindJNI.cmake
@@ -57,7 +57,7 @@ macro(java_append_library_directories _var)
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^mips")
# mips* machines are bi-endian mostly so processor does not tell
# endianess of the underlying system.
- set(_java_libarch "${CMAKE_SYSTEM_PROCESSOR}" "mips" "mipsel" "mipseb")
+ set(_java_libarch "${CMAKE_SYSTEM_PROCESSOR}" "mips" "mipsel" "mipseb" "mips64" "mips64el" "mipsn32" "mipsn32el")
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64le")
set(_java_libarch "ppc64" "ppc64le")
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64")