summaryrefslogtreecommitdiff
path: root/Modules/FindJNI.cmake
diff options
context:
space:
mode:
authorYunQiang Su <wzssyqa@gmail.com>2018-03-14 10:19:12 -0400
committerBrad King <brad.king@kitware.com>2018-03-14 11:17:19 -0400
commit8c92596e9621e687b333f3dcdac5c2bb6d5ca1b1 (patch)
treec89a7e1c28a253ef5ea79d6f2d41e01cd33dd4d4 /Modules/FindJNI.cmake
parentc5541cf0da1093635fea7da5a40e64e481b5477e (diff)
downloadcmake-8c92596e9621e687b333f3dcdac5c2bb6d5ca1b1.tar.gz
FindJNI: add some new architecture names for mips release 6
Diffstat (limited to 'Modules/FindJNI.cmake')
-rw-r--r--Modules/FindJNI.cmake5
1 files changed, 4 insertions, 1 deletions
diff --git a/Modules/FindJNI.cmake b/Modules/FindJNI.cmake
index c4601a1c7a..e31c19e106 100644
--- a/Modules/FindJNI.cmake
+++ b/Modules/FindJNI.cmake
@@ -47,7 +47,10 @@ macro(java_append_library_directories _var)
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^mips")
# mips* machines are bi-endian mostly so processor does not tell
# endianness of the underlying system.
- set(_java_libarch "${CMAKE_SYSTEM_PROCESSOR}" "mips" "mipsel" "mipseb" "mips64" "mips64el" "mipsn32" "mipsn32el")
+ set(_java_libarch "${CMAKE_SYSTEM_PROCESSOR}"
+ "mips" "mipsel" "mipseb" "mipsr6" "mipsr6el"
+ "mips64" "mips64el" "mips64r6" "mips64r6el"
+ "mipsn32" "mipsn32el" "mipsn32r6" "mipsn32r6el")
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64le")
set(_java_libarch "ppc64" "ppc64le")
elseif(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64")