X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/18b038a13c3502d5787a3c8e6bc02f81aecd4781..7f4f03348bd07609e258eb3b545bdafc2c881847:/tools/cmake/MakeLib.cmake diff --git a/tools/cmake/MakeLib.cmake b/tools/cmake/MakeLib.cmake index 6c018d6277..2dbc52eb05 100644 --- a/tools/cmake/MakeLib.cmake +++ b/tools/cmake/MakeLib.cmake @@ -8,10 +8,6 @@ add_library(simgrid SHARED ${simgrid_sources}) set_target_properties(simgrid PROPERTIES VERSION ${libsimgrid_version}) -if(enable_lib_static) - add_library(simgrid_static STATIC ${simgrid_sources}) -endif() - if(enable_ust) ADD_DEPENDENCIES(simgrid simgrid_ust) endif() @@ -33,27 +29,6 @@ if (HAVE_BOOST_CONTEXT) set(SIMGRID_DEP "${SIMGRID_DEP} ${Boost_CONTEXT_LIBRARY}") endif() -if(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" - AND NOT ${CMAKE_SYSTEM_VERSION} VERSION_LESS 10.0 - AND ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang") - # FreeBSD from 10.0 provide a internal C++ stack (unused by gcc) - # see https://wiki.freebsd.org/NewC%2B%2BStack - set(SIMGRID_DEP "${SIMGRID_DEP} -lc++") -elseif(${CMAKE_SYSTEM_NAME} STREQUAL "FreeBSD" - AND ${CMAKE_SYSTEM_VERSION} VERSION_LESS 10.0 - AND ${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang") - # FreeBSD prior to 10.0 does not necessarily have a compiler - # installed that is capable of c++11! Hence, we just assume - # here that libc++ was compiled. - # FIXME: We should change this behavior; we may want to include - # an option of whether libc++ (clang++) or libstdc++ (g++) - # should be used. - include_directories( "/usr/local/include/c++/v1") - set(SIMGRID_DEP "${SIMGRID_DEP} -lc++ -L/usr/local/lib ") -else() - set(SIMGRID_DEP "${SIMGRID_DEP} -lstdc++") -endif() - if(HAVE_PTHREAD AND ${CONTEXT_THREADS} AND NOT APPLE) # Clang on recent Mac OS X is not happy about -pthread. SET(SIMGRID_DEP "${SIMGRID_DEP} -pthread") @@ -82,7 +57,7 @@ if(HAVE_LUA) COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/simdag/ COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE} #for test ) - SET(SIMGRID_DEP "${SIMGRID_DEP} -l${LIB_LUA_NAME}") + SET(SIMGRID_DEP "${SIMGRID_DEP} ${LUA_LIBRARY} -ldl") endif() if(HAVE_GRAPHVIZ) @@ -97,6 +72,7 @@ endif() if(HAVE_LIBSIGC++) SET(SIMGRID_DEP "${SIMGRID_DEP} -lsigc-2.0") + add_definitions(-DLIBSIGC) endif() if(HAVE_MC) @@ -146,14 +122,6 @@ endif() target_link_libraries(simgrid ${SIMGRID_DEP}) -# Pass dependencies to static libs -################################## -if(enable_lib_static) - target_link_libraries(simgrid_static ${SIMGRID_DEP}) - add_dependencies(simgrid_static maintainer_files) - set_target_properties(simgrid_static PROPERTIES OUTPUT_NAME simgrid) -endif() - # Dependencies from maintainer mode ################################### if(enable_maintainer_mode AND PYTHON_EXE)