X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a57f4208147d6350deb00455826fbf8fd6d2f22e..2c89244eb0c2a35bc594e9af457d4a03ed0db184:/tools/cmake/Java.cmake diff --git a/tools/cmake/Java.cmake b/tools/cmake/Java.cmake index f9cee4947e..7803938d4d 100644 --- a/tools/cmake/Java.cmake +++ b/tools/cmake/Java.cmake @@ -3,9 +3,9 @@ ## This file is loaded only if the Java option is activated ## -find_package(Java 1.7 COMPONENTS Runtime Development) +find_package(Java 1.8 COMPONENTS Runtime Development) if (NOT ${Java_FOUND}) - message(FATAL_ERROR "Java not found (need at least Java7). Please install the JDK or disable that option") + message(FATAL_ERROR "Java not found (need at least Java8). Please install the JDK or disable that option") endif() set(Java_FOUND 1) include(UseJava) @@ -103,12 +103,14 @@ if(enable_lib_in_jar) endif() set(JAVA_NATIVE_PATH NATIVE/${SG_SYSTEM_NAME}/${CMAKE_SYSTEM_PROCESSOR}) - if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "^i[3-6]86$") - set(JAVA_NATIVE_PATH NATIVE/${SG_SYSTEM_NAME}/x86) - endif() - if( (${CMAKE_SYSTEM_PROCESSOR} MATCHES "x86_64") OR - (${CMAKE_SYSTEM_PROCESSOR} MATCHES "AMD64") ) - set(JAVA_NATIVE_PATH NATIVE/${SG_SYSTEM_NAME}/amd64) + if( (${CMAKE_SYSTEM_PROCESSOR} MATCHES "^i[3-6]86$") OR + (${CMAKE_SYSTEM_PROCESSOR} MATCHES "x86_64") OR + (${CMAKE_SYSTEM_PROCESSOR} MATCHES "AMD64") ) + if(CMAKE_SIZEOF_VOID_P EQUAL 4) # 32 bits + set(JAVA_NATIVE_PATH NATIVE/${SG_SYSTEM_NAME}/x86) + else() + set(JAVA_NATIVE_PATH NATIVE/${SG_SYSTEM_NAME}/amd64) + endif() endif() if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "armv7l") set(JAVA_NATIVE_PATH NATIVE/${SG_SYSTEM_NAME}/arm) # Default arm (soft-float ABI) @@ -135,7 +137,8 @@ if(WIN32) # So let's be brutal and copy it in any case (even on non-windows builds) from the location where appveyor provides it. # The copy is only expected to work on the appveyor builder, but that's all we need right now # since our users are directed to download that file as nightly build. - COMMAND ${CMAKE_COMMAND} -E copy_if_different C:/mingw-w64/x86_64-7.2.0-posix-seh-rt_v5-rev1/mingw64/bin/libwinpthread-1.dll ${JAVA_NATIVE_PATH}/libwinpthread-1.dll || true + COMMAND ${CMAKE_COMMAND} -E copy_if_different C:/mingw-w64/x86_64-7.2.0-posix-seh-rt_v5-rev1/mingw64/bin/libwinpthread-1.dll ${JAVA_NATIVE_PATH}/libwinpthread-1.dll || true + COMMAND ${CMAKE_COMMAND} -E copy_if_different C:/ProgramData/chocolatey/lib/mingw/tools/install/mingw64/bin/libwinpthread-1.dll ${JAVA_NATIVE_PATH}/libwinpthread-1.dll || true ) endif()