X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4b9e8701e4d7cb2a6a8b577af830c96f3d303f86..ed768dce19e5484685b7e4cc688b9aea62edd396:/CMakeLists.txt?ds=sidebyside diff --git a/CMakeLists.txt b/CMakeLists.txt index 3e90c9a34f..d2a9568c2a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -393,7 +393,6 @@ endif() if(enable_smpi) SET(HAVE_SMPI 1) if("${CMAKE_SYSTEM}" MATCHES "Darwin|FreeBSD|Linux") - SET(USE_LIBUTIL 0) SET(HAVE_PRIVATIZATION 1) else() message (STATUS "Warning: no support for SMPI automatic privatization on this platform") @@ -776,6 +775,11 @@ if(NOT PYTHONLIBS_FOUND) endif() option(enable_python "Whether the Python bindings are activated." ${pybind11_FOUND}) # ON by default if dependencies are met +if("${CMAKE_SYSTEM}" MATCHES "FreeBSD" AND enable_model-checking AND enable_python) + message(WARNING "FreeBSD + Model-Checking + Python = too much for now. Disabling python") + set(enable_python FALSE) +endif() + if(enable_python) if(pybind11_FOUND) pybind11_add_module(python-bindings src/bindings/python/simgrid_python.cpp) @@ -855,6 +859,7 @@ message(" version .............: ${CMAKE_CXX_COMPILER_VERSION}") if(${Java_FOUND}) message(" Compiler: Javac .............: ${Java_JAVAC_EXECUTABLE}") message(" version .............: ${Java_VERSION_STRING}") + message(" runtime .............: ${Java_JAVA_EXECUTABLE}") endif() if(CMAKE_Fortran_COMPILER) message(" Compiler: Fortran ...........: ${SMPI_Fortran_COMPILER} (id: ${CMAKE_Fortran_COMPILER_ID})")