X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/04fef7cbdc4ebc91ed45df5c9279f6bd50a9b619..5f3b044c3c20a77316fa4a7bf4b5d94c17b26289:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 8d45268ef6..f511ad011c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -197,6 +197,8 @@ IF(CMAKE_SYSTEM_PROCESSOR MATCHES ".86|AMD64|amd64") ENDIF() if (WIN32) message(STATUS "Disable fast raw contexts on Windows.") + elseif(CMAKE_SIZEOF_VOID_P EQUAL 4 AND CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64") + message(STATUS "Disable fast raw contexts on x32 ABI.") else() set(HAVE_RAW_CONTEXTS 1) endif() @@ -228,7 +230,7 @@ if(enable_ns3) include(FindNS3) if (SIMGRID_HAVE_NS3) set(SIMGRID_HAVE_NS3 1) - foreach(lib core csma point-to-point internet network applications) + foreach(lib core csma point-to-point internet network applications wifi) set(SIMGRID_DEP "${SIMGRID_DEP} -lns${NS3_VERSION}-${lib}${NS3_SUFFIX}") endforeach() else() @@ -854,7 +856,15 @@ if(enable_python) target_link_libraries(python-bindings PUBLIC simgrid) set_target_properties(python-bindings PROPERTIES LIBRARY_OUTPUT_NAME simgrid - CXX_VISIBILITY_PRESET "default") + CXX_VISIBILITY_PRESET "default" + INTERPROCEDURAL_OPTIMIZATION FALSE) + # LTO is disabled here from the python bindings because this makes a + # cmake warning about CMP0069 even when this policy is set. This + # problem may be in cmake, in pybind11 or even in our code, not sure. + # It may get eventually solved in cmake or pybind11. Or not. + # The sure thing is that our python bindings are in one file only, + # so there is no need for LTO here. Problem solved :) + add_dependencies(tests python-bindings) set_property(TARGET python-bindings APPEND PROPERTY INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}")