Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
chainsend: remove active wait at peer termination
[simgrid.git] / buildtools / Cmake / MakeLib.cmake
1 ### Make Libs
2
3 ###############################
4 # Declare the library content #
5 ###############################
6 # If we want supernovae, rewrite the libs' content to use it
7 include(${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/Supernovae.cmake)
8
9 # Actually declare our libraries
10
11 add_library(simgrid SHARED ${simgrid_sources})
12 set_target_properties(simgrid PROPERTIES VERSION ${libsimgrid_version})
13
14 if(enable_lib_static)
15   add_library(simgrid_static STATIC ${simgrid_sources})
16 endif()
17
18 if(enable_smpi)
19   add_library(smpi SHARED ${SMPI_SRC})
20   set_target_properties(smpi PROPERTIES VERSION ${libsmpi_version})
21   if(enable_lib_static)
22     add_library(smpi_static STATIC ${SMPI_SRC})
23   endif()
24 endif()
25
26 if(enable_java)
27   add_library(SG_java SHARED ${JMSG_C_SRC})
28   set_target_properties(SG_java PROPERTIES VERSION ${libSG_java_version})
29   get_target_property(COMMON_INCLUDES SG_java INCLUDE_DIRECTORIES)
30   set_target_properties(SG_java PROPERTIES
31     INCLUDE_DIRECTORIES "${COMMON_INCLUDES};${JNI_INCLUDE_DIRS}")
32   add_dependencies(SG_java simgrid)
33
34   if(WIN32)
35     get_target_property(SIMGRID_LIB_NAME_NAME SG_java LIBRARY_OUTPUT_NAME)
36     set_target_properties(SG_java PROPERTIES
37       LINK_FLAGS "-Wl,--subsystem,windows,--kill-at ${SIMGRID_LIB_NAME}"
38       PREFIX "")
39     find_path(PEXPORTS_PATH NAMES pexports.exe PATHS NO_DEFAULT_PATHS)
40     message(STATUS "pexports: ${PEXPORTS_PATH}")
41     if(PEXPORTS_PATH)
42       add_custom_command(TARGET SG_java POST_BUILD
43         COMMAND ${PEXPORTS_PATH}/pexports.exe ${CMAKE_BINARY_DIR}/SG_java.dll > ${CMAKE_BINARY_DIR}/SG_java.def)
44     endif(PEXPORTS_PATH)
45   else()
46     target_link_libraries(SG_java simgrid)
47   endif()
48
49   set(CMAKE_JAVA_TARGET_OUTPUT_NAME simgrid)
50   add_jar(SG_java_jar ${JMSG_JAVA_SRC})
51
52   set(SIMGRID_JAR "${CMAKE_BINARY_DIR}/simgrid.jar")
53   set(MANIFEST_FILE "${CMAKE_HOME_DIRECTORY}/src/bindings/java/MANIFEST.MF")
54
55   if(CMAKE_SYSTEM_PROCESSOR MATCHES ".86")
56     if(${ARCH_32_BITS})
57       set(JSG_BUNDLE "NATIVE/${CMAKE_SYSTEM_NAME}/x86/")
58     else()
59       set(JSG_BUNDLE "NATIVE/${CMAKE_SYSTEM_NAME}/amd64/")
60     endif()
61   else()
62     error("Unknown system type. Processor: ${CMAKE_SYSTEM_PROCESSOR}; System: ${CMAKE_SYSTEM_NAME}")
63   endif()
64   message("Native libraries bundled into: ${JSG_BUNDLE}")
65
66   set(LIBSIMGRID_SO
67     ${CMAKE_SHARED_LIBRARY_PREFIX}simgrid${CMAKE_SHARED_LIBRARY_SUFFIX})
68   set(LIBSG_JAVA_SO
69     ${CMAKE_SHARED_LIBRARY_PREFIX}simgrid${CMAKE_SHARED_LIBRARY_SUFFIX})
70
71   add_custom_command(
72     COMMENT "Finalize simgrid.jar..."
73     OUTPUT ${SIMGRID_JAR}_finalized
74     DEPENDS simgrid SG_java ${SIMGRID_JAR} ${MANIFEST_FILE}
75             ${CMAKE_HOME_DIRECTORY}/COPYING
76             ${CMAKE_HOME_DIRECTORY}/ChangeLog
77             ${CMAKE_HOME_DIRECTORY}/ChangeLog.SimGrid-java
78     WORKING_DIRECTORY "${CMAKE_BINARY_DIR}"
79     COMMAND ${CMAKE_COMMAND} -E remove_directory "NATIVE"
80     COMMAND ${CMAKE_COMMAND} -E make_directory "${JSG_BUNDLE}"
81     COMMAND ${CMAKE_COMMAND} -E copy "./lib/${LIBSIMGRID_SO}" "${JSG_BUNDLE}"
82     COMMAND ${CMAKE_STRIP} -S "${JSG_BUNDLE}/${LIBSIMGRID_SO}"
83     COMMAND ${CMAKE_COMMAND} -E copy "./lib/${LIBSG_JAVA_SO}" "${JSG_BUNDLE}"
84     COMMAND ${CMAKE_STRIP} -S "${JSG_BUNDLE}/${LIBSG_JAVA_SO}"
85     COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_HOME_DIRECTORY}/COPYING" "${JSG_BUNDLE}"
86     COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_HOME_DIRECTORY}/ChangeLog" "${JSG_BUNDLE}"
87     COMMAND ${CMAKE_COMMAND} -E copy "${CMAKE_HOME_DIRECTORY}/ChangeLog.SimGrid-java" "${JSG_BUNDLE}"
88     COMMAND ${JAVA_ARCHIVE} -uvmf ${MANIFEST_FILE} ${SIMGRID_JAR} "NATIVE"
89     COMMAND ${CMAKE_COMMAND} -E touch ${SIMGRID_JAR}_finalized
90     )
91   add_custom_target(SG_java_jar_finalize DEPENDS ${SIMGRID_JAR}_finalized)
92   add_dependencies(SG_java_jar SG_java_jar_finalize)
93 endif()
94
95 add_dependencies(simgrid maintainer_files)
96
97 # if supernovaeing, we need some depends to make sure that the source gets generated
98 if (enable_supernovae)
99   add_dependencies(simgrid ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_sg.c)
100   if(enable_lib_static)
101     add_dependencies(simgrid_static ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_sg.c)
102   endif()
103
104   if(enable_smpi)
105     add_dependencies(smpi ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_smpi.c)
106     if(enable_lib_static)
107       add_dependencies(smpi_static ${CMAKE_CURRENT_BINARY_DIR}/src/supernovae_smpi.c)
108     endif()
109   endif()
110 endif()
111
112 # Compute the dependencies of SimGrid
113 #####################################
114 set(SIMGRID_DEP "-lm -lpcre")
115
116 if(pthread)
117   if(${CONTEXT_THREADS})
118     SET(SIMGRID_DEP "${SIMGRID_DEP} -pthread")
119   endif()
120 endif()
121
122 if(HAVE_LUA)
123   ADD_CUSTOM_TARGET(link_simgrid_lua ALL
124     DEPENDS     simgrid
125     ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE}
126     ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE}
127     ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE}
128     )
129   add_custom_command(
130     OUTPUT      ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE}
131     ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE}
132     ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE}
133     COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE} # if it exists, creating the link fails. So cleanup before hand
134     COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/lua/
135     COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/lua/simgrid.${LIB_EXE} #for test
136
137     COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE} # if it exists, creating the link fails. So cleanup before hand
138     COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/msg/masterslave/
139     COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/msg/masterslave/simgrid.${LIB_EXE} #for test
140
141     COMMAND ${CMAKE_COMMAND} -E remove -f ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE} # if it exists, creating the link fails. So cleanup before hand
142     COMMAND ${CMAKE_COMMAND} -E make_directory ${CMAKE_BINARY_DIR}/examples/simdag/
143     COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_BINARY_DIR}/lib/libsimgrid.${LIB_EXE} ${CMAKE_BINARY_DIR}/examples/simdag/simgrid.${LIB_EXE} #for test
144     )
145   SET(SIMGRID_DEP "${SIMGRID_DEP} -l${LIB_LUA_NAME}")
146 endif()
147
148 if(HAVE_GRAPHVIZ)
149   if(HAVE_CGRAPH_LIB)
150     SET(SIMGRID_DEP "${SIMGRID_DEP} -lcgraph")
151   else()
152     if(HAVE_AGRAPH_LIB)
153       SET(SIMGRID_DEP "${SIMGRID_DEP} -lagraph -lcdt")
154     endif()
155   endif()
156 endif()
157
158 if(HAVE_GTNETS)
159   SET(SIMGRID_DEP "${SIMGRID_DEP} -lgtnets")
160 endif()
161
162 if(HAVE_MC)
163   # The availability of libunwind was checked in CompleteInFiles.cmake
164   #   (that includes FindLibunwind.cmake), so simply load it now.
165   
166   # This supposes that the host machine is either an AMD or a X86.
167   # This is deeply wrong, and should be fixed by manually loading -lunwind-PLAT (FIXME)
168   if(PROCESSOR_x86_64)
169     SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86_64")
170   else()    
171     SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86")
172   endif()
173 endif()
174
175 if(MMALLOC_WANT_OVERRIDE_LEGACY AND HAVE_GNU_LD)
176   SET(SIMGRID_DEP "${SIMGRID_DEP} -ldl")
177 endif()
178
179 if(HAVE_NS3)
180   if(${NS3_VERSION} EQUAL 310)
181     SET(SIMGRID_DEP "${SIMGRID_DEP} -lns3")
182     set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_NS3_3_10")
183     set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D_NS3_3_10")
184   else()
185     SET(SIMGRID_DEP "${SIMGRID_DEP} -lns3-core -lns3-csma -lns3-point-to-point -lns3-internet -lns3-applications")
186   endif()
187 endif()
188
189 if(HAVE_POSIX_GETTIME)
190   SET(SIMGRID_DEP "${SIMGRID_DEP} -lrt")
191 endif()
192
193 target_link_libraries(simgrid   ${SIMGRID_DEP})
194
195 # Compute the dependencies of SMPI
196 ##################################
197 set(SMPI_DEP "")
198 if(APPLE)
199   set(SMPI_DEP "-Wl,-U -Wl,_smpi_simulated_main")
200 endif()
201 if(enable_smpi)
202   target_link_libraries(smpi    simgrid ${SMPI_DEP})
203 endif()
204
205 # Pass dependencies to static libs
206 ##################################
207 if(enable_lib_static)
208   target_link_libraries(simgrid_static  ${SIMGRID_DEP})
209   add_dependencies(simgrid_static maintainer_files)
210   set_target_properties(simgrid_static PROPERTIES OUTPUT_NAME simgrid)
211   if(enable_smpi)
212     target_link_libraries(smpi_static   simgrid ${SMPI_DEP})
213     set_target_properties(smpi_static PROPERTIES OUTPUT_NAME smpi)
214   endif()
215 endif()
216
217 # Dependencies from maintainer mode
218 ###################################
219 if(enable_maintainer_mode AND BISON_EXE AND LEX_EXE)
220   add_dependencies(simgrid automaton_generated_src)
221 endif()