Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
this is definitely a backtrace function
[simgrid.git] / CMakeLists.txt
1 cmake_minimum_required(VERSION 2.8.8)
2 message(STATUS "Cmake version ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}.${CMAKE_PATCH_VERSION}")
3 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_HOME_DIRECTORY}/tools/cmake/Modules)
4
5 project(SimGrid C CXX)
6
7 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
8 #     Check for the compiler        #
9 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
10
11 ### Need to set rc ccompiler before enable language
12 if(WIN32)
13   SET(CMAKE_RC_COMPILER "windres")
14 endif()
15
16 ## 
17 ## Check the C/C++ standard that we need
18 ##   See also tools/cmake/GCCFlags.cmake that sets our paranoid warning flags
19 INCLUDE(CheckCCompilerFlag)
20 CHECK_C_COMPILER_FLAG(-fstack-cleaner HAVE_C_STACK_CLEANER)
21
22 ## Request full debugging flags
23 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g3")
24 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g3")
25 set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -g")
26
27 if (CMAKE_COMPILER_IS_GNUCC)    
28   if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.7")
29     message(FATAL_ERROR
30             "SimGrid needs at least g++ version 4.7 to compile but you have ${CMAKE_CXX_COMPILER_VERSION}."
31             "You need a sufficient support of c++11 to compile SimGrid.")
32   endif()
33 endif()
34
35 ## We need a decent support of the c++11 standard
36 include(CheckCXXCompilerFlag)
37 CHECK_CXX_COMPILER_FLAG("-std=gnu++11" COMPILER_SUPPORTS_CXX11)
38 if(COMPILER_SUPPORTS_CXX11)
39   set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11")
40 else() 
41   message(FATAL_ERROR 
42           "The compiler ${CMAKE_CXX_COMPILER} (v${CMAKE_CXX_COMPILER_VERSION}) has no C++11 support. "
43            "Please use a decent C++ compiler.")
44 endif()
45
46 ### And we need C11 standard, too
47 include(CheckCCompilerFlag)
48 CHECK_C_COMPILER_FLAG("-std=gnu11" COMPILER_SUPPORTS_C11)
49 if(COMPILER_SUPPORTS_C11)
50   set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -std=gnu11")
51 else()
52   message(FATAL_ERROR 
53           "The compiler ${CMAKE_C_COMPILER} (v${CMAKE_C_COMPILER_VERSION}) has no C11 support. "
54           "Please use a decent C compiler "
55           "(note that c++11 support of ${CMAKE_CXX_COMPILER} seems ok).")
56 endif()
57 if(APPLE AND (CMAKE_C_COMPILER_VERSION VERSION_LESS "4.6"))
58   ### gcc 4.[1-5] cannot compile ucontext on OSX
59   message(STATUS "Ucontext can't be used with this version of gcc (must be greater than 4.5)")
60   set(HAVE_UCONTEXT_H 0)
61 endif()
62
63
64 ### Setup Options
65 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Option.cmake)
66
67 ### SMPI vs. Fortran
68 if ((NOT DEFINED enable_smpi) OR enable_smpi) 
69   # First unset the compiler in case we're re-running cmake over a previous
70   # configuration where it was saved as smpiff
71   unset(CMAKE_Fortran_COMPILER)
72   
73   SET(SMPI_FORTRAN 0)
74   if(enable_fortran)
75     enable_language(Fortran OPTIONAL)
76   endif()
77   
78   if(CMAKE_Fortran_COMPILER)
79     # Fortran compiler detected: save it, then replace by smpiff
80     set(SAVED_Fortran_COMPILER "${CMAKE_Fortran_COMPILER}" CACHE FILEPATH "The real Fortran compiler")
81     set(CMAKE_Fortran_COMPILER smpiff)
82     set(SMPI_FORTRAN 1)
83   endif(CMAKE_Fortran_COMPILER)
84
85 endif()
86
87 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
88 #     Build the version number      #
89 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
90
91 set(SIMGRID_VERSION_MAJOR "3")
92 set(SIMGRID_VERSION_MINOR "13")
93 set(SIMGRID_VERSION_PATCH "90")
94 set(SIMGRID_VERSION_EXTRA "-prealpha") # Extra words to add to version string (e.g. -rc1)
95
96 set(SIMGRID_VERSION_DATE  "2016") # Year for copyright information
97
98 if(${SIMGRID_VERSION_PATCH} EQUAL "0")
99   set(release_version "${SIMGRID_VERSION_MAJOR}.${SIMGRID_VERSION_MINOR}")
100 else()
101   set(release_version "${SIMGRID_VERSION_MAJOR}.${SIMGRID_VERSION_MINOR}.${SIMGRID_VERSION_PATCH}")
102 endif()
103
104 set(SIMGRID_VERSION_STRING "SimGrid version ${release_version}${SIMGRID_VERSION_EXTRA}")
105
106 set(libsimgrid_version "${release_version}")
107 set(libsimgrid-java_version "${release_version}")
108
109 ### SET THE LIBRARY EXTENSION 
110 if(APPLE)
111   set(LIB_EXE "dylib")
112 elseif(WIN32)
113   set(LIB_EXE "a")
114   set(BIN_EXE ".exe")
115 else()
116   set(LIB_EXE "so")
117 endif()
118
119 execute_process(COMMAND   ${CMAKE_LINKER}   -version    OUTPUT_VARIABLE LINKER_VERSION)
120 string(REGEX MATCH "[0-9].[0-9]*" LINKER_VERSION "${LINKER_VERSION}")
121
122 ### Set the library providing dlopen
123 if("${CMAKE_SYSTEM}" MATCHES "Linux")
124   find_library(dl DL_LIBRARY)
125 endif("${CMAKE_SYSTEM}" MATCHES "Linux")
126
127 ### Find programs and paths
128 FIND_PROGRAM(GCOV_PATH gcov)
129 include(FindPerl)
130 if(NOT PERL_FOUND)
131   message(FATAL_ERROR "Please install Perl to compile SimGrid.")
132 endif()
133
134 # tesh.py needs python 3 (or the module python-subprocess32 on python2.8+)
135 set(PythonInterp_FIND_VERSION 3)
136 set(PythonInterp_FIND_VERSION_COUNT 1)
137 set(PythonInterp_FIND_VERSION_MAJOR 3)
138 include(FindPythonInterp)
139 if(NOT PYTHONINTERP_FOUND)
140   message(FATAL_ERROR "Please install Python (version 3 or higher).")
141 endif()
142
143 if (APPLE)
144   set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
145   set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
146 endif()
147 SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib)
148
149 ### Compute the include paths
150 set(INCLUDES
151   ${CMAKE_HOME_DIRECTORY}
152   ${CMAKE_HOME_DIRECTORY}/include
153   ${CMAKE_HOME_DIRECTORY}/src/include
154   ${CMAKE_BINARY_DIR}
155   ${CMAKE_BINARY_DIR}/include
156   )
157
158 if(NOT CMAKE_CROSSCOMPILING AND EXISTS /usr/include/)
159   set(INCLUDES ${INCLUDES} /usr/include/)
160 endif()
161
162 ### Check 32bits or 64bits
163 IF(CMAKE_SIZEOF_VOID_P EQUAL 4)
164   SET(ARCH_32_BITS 1)
165 ELSE()
166   SET(ARCH_32_BITS 0)
167 ENDIF()
168
169 if(WIN32)
170   set(CMAKE_INCLUDE_WIN "${CMAKE_C_COMPILER}")
171   set(CMAKE_LIB_WIN "${CMAKE_C_COMPILER}")
172   string(REGEX REPLACE "/bin/gcc.*" "/include"  CMAKE_INCLUDE_WIN "${CMAKE_INCLUDE_WIN}")
173   string(REGEX REPLACE "/bin/gcc.*" "/lib"  CMAKE_LIB_WIN "${CMAKE_LIB_WIN}")
174   set(INCLUDES ${INCLUDES} ${CMAKE_INCLUDE_WIN})
175   unset(CMAKE_INCLUDE_WIN)
176 endif()
177
178 include_directories(${INCLUDES})
179
180 # library dependency cannot start with a space (CMP0004), so initialize it with something that is never desactivated.
181 set(SIMGRID_DEP "-lm") 
182
183 ### Determine the assembly flavor that we need today
184 set(HAVE_RAW_CONTEXTS 0)
185 include(CMakeDetermineSystem)
186 IF(CMAKE_SYSTEM_PROCESSOR MATCHES ".86|AMD64|amd64")
187   IF(${ARCH_32_BITS})
188     message(STATUS "System processor: i686 (${CMAKE_SYSTEM_PROCESSOR}, 32 bits)")
189     set(PROCESSOR_i686 1)
190     set(PROCESSOR_x86_64 0)
191   ELSE()
192     message(STATUS "System processor: x86_64 (${CMAKE_SYSTEM_PROCESSOR}, 64 bits)")
193     set(PROCESSOR_i686 0)
194     set(PROCESSOR_x86_64 1)
195   ENDIF()
196   if (WIN32)
197     message(STATUS "Disable fast raw contexts on Windows.")
198   else()
199     set(HAVE_RAW_CONTEXTS 1)
200   endif()
201 ELSE()
202   set(PROCESSOR_i686 0)
203   set(PROCESSOR_x86_64 0)
204 ENDIF()
205
206 include(CheckFunctionExists)
207 include(CheckTypeSize)
208 include(CheckIncludeFile)
209 include(CheckIncludeFiles)
210 include(CheckLibraryExists)
211 include(CheckSymbolExists)
212
213 set(HAVE_GRAPHVIZ 0)
214 include(FindGraphviz)
215
216 set(HAVE_LUA 0)
217 if(enable_lua)
218   include(FindLuaSimgrid)
219 endif()
220
221 set(HAVE_NS3 0)
222 if(enable_ns3)
223   include(FindNS3)
224   if (NOT HAVE_NS3)
225     message(FATAL_ERROR "Cannot find NS3. Please install it (apt-get install ns3 libns3-dev) or disable that cmake option")
226   endif()
227 endif()
228
229 if(WIN32)
230   set(Boost_USE_STATIC_LIBS 1)
231 endif()
232 set(HAVE_PAPI 0)
233 if(enable_smpi_papi)
234   include(FindPAPI)
235   if (NOT HAVE_PAPI)
236     message(FATAL_ERROR "Cannot find PAPI. Please install it (apt-get install papi-tools libpapi-dev) or disable PAPI bindings.")
237   endif()
238 endif()
239
240 find_package(Boost 1.48)
241 if(Boost_FOUND)
242   include_directories(${Boost_INCLUDE_DIRS})
243 else()
244   if(APPLE)
245     message(FATAL_ERROR "Failed to find Boost libraries (Try to install them with 'sudo fink install boost1.53.nopython')")
246   else()
247     message(FATAL_ERROR "Failed to find Boost libraries."
248                         "Did you install libboost-dev and libboost-context-dev?"
249                         "(libboost-context-dev is optional)"
250                         "SimGrid requires Boost >= 1.48.0")
251   endif()
252 endif()
253
254 #Boost context 1.61 will break compatibility with our implementation.
255 #Warn users about that
256 find_package(Boost 1.61 COMPONENTS context)
257
258 if(Boost_FOUND AND Boost_CONTEXT_FOUND)
259   message("WARNING : our implementation of Boost context factory is not compatible with Boost >=1.61 yet.")
260
261   set(Boost_FOUND 1)
262   set(HAVE_BOOST_CONTEXTS 0)
263 else()
264 # Try again to see if we have libboost-context
265   find_package(Boost 1.42 COMPONENTS context)
266   set(Boost_FOUND 1) # We don't care of whether this component is missing
267
268   if(Boost_FOUND AND Boost_CONTEXT_FOUND)
269     # We should use feature detection for this instead:
270     if (Boost_VERSION LESS 105600)
271       message("Found Boost.Context API v1")
272       set(HAVE_BOOST_CONTEXTS 1)
273     else()
274       message("Found Boost.Context API v2")
275       set(HAVE_BOOST_CONTEXTS 2)
276     endif()
277   else()
278     message ("   boost        : found.")
279     message ("   boost-context: missing. Install libboost-context-dev for this optional feature.")
280     set(HAVE_BOOST_CONTEXTS 0)
281   endif()
282 endif()
283
284 # Checks for header libraries functions.
285 CHECK_LIBRARY_EXISTS(rt      clock_gettime           "" HAVE_POSIX_GETTIME)
286
287 CHECK_LIBRARY_EXISTS(pthread pthread_create          "" HAVE_PTHREAD)
288 if(NOT APPLE) # OS X El Capitan deprecates this function
289   CHECK_LIBRARY_EXISTS(pthread sem_init                "" HAVE_SEM_INIT_LIB)
290 endif()
291 CHECK_LIBRARY_EXISTS(pthread sem_open                "" HAVE_SEM_OPEN_LIB)
292 set(HAVE_PTHREAD_SETAFFINITY 0)
293 CHECK_LIBRARY_EXISTS(pthread pthread_setaffinity_np  "" HAVE_PTHREAD_SETAFFINITY)
294
295 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
296   set(CMAKE_REQUIRED_DEFINITIONS "-D_XOPEN_SOURCE=700 -D_DARWIN_C_SOURCE")
297 elseif(MINGW)
298   # Use the GNU version of unusual modifiers like PRIx64
299   add_definitions(-D__USE_MINGW_ANSI_STDIO=1)
300   set(CMAKE_REQUIRED_DEFINITIONS "-D__USE_MINGW_ANSI_STDIO=1")
301 else()
302   set(CMAKE_REQUIRED_DEFINITIONS "-D_GNU_SOURCE")
303 endif()
304
305 CHECK_INCLUDE_FILE("valgrind/valgrind.h" HAVE_VALGRIND_H)
306 CHECK_INCLUDE_FILE("unistd.h" HAVE_UNISTD_H)
307 CHECK_INCLUDE_FILE("execinfo.h" HAVE_EXECINFO_H)
308 CHECK_INCLUDE_FILE("signal.h" HAVE_SIGNAL_H)
309 CHECK_INCLUDE_FILE("sys/param.h" HAVE_SYS_PARAM_H)
310 CHECK_INCLUDE_FILE("sys/sysctl.h" HAVE_SYS_SYSCTL_H)
311 CHECK_INCLUDE_FILE("ucontext.h" HAVE_UCONTEXT_H)
312 CHECK_INCLUDE_FILE("linux/futex.h" HAVE_FUTEX_H)
313
314 CHECK_FUNCTION_EXISTS(backtrace HAVE_BACKTRACE)
315 CHECK_FUNCTION_EXISTS(gettimeofday HAVE_GETTIMEOFDAY)
316 CHECK_FUNCTION_EXISTS(nanosleep HAVE_NANOSLEEP)
317 CHECK_FUNCTION_EXISTS(getdtablesize HAVE_GETDTABLESIZE)
318 CHECK_FUNCTION_EXISTS(sysconf HAVE_SYSCONF)
319 CHECK_FUNCTION_EXISTS(popen HAVE_POPEN)
320 CHECK_FUNCTION_EXISTS(process_vm_readv HAVE_PROCESS_VM_READV)
321 CHECK_FUNCTION_EXISTS(mmap HAVE_MMAP)
322 CHECK_FUNCTION_EXISTS(mremap HAVE_MREMAP)
323
324 CHECK_SYMBOL_EXISTS(vasprintf stdio.h HAVE_VASPRINTF)
325 if(MINGW)
326   # The detection of vasprintf fails on MinGW, assumingly because it's
327   # defined as an inline function in stdio.h instead of a regular
328   # function. So force the result to be 1 despite of the test.
329   set(HAVE_VASPRINTF 1)
330 endif()
331
332 #Check if __thread is defined
333 execute_process(
334   COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_thread_storage.c -o testprog"
335   WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
336   RESULT_VARIABLE HAVE_thread_storage_run)
337 file(REMOVE testprog)
338 if(HAVE_thread_storage_run)
339   set(HAVE_THREAD_LOCAL_STORAGE 1)
340 else()
341   set(HAVE_THREAD_LOCAL_STORAGE 0)
342 endif()
343
344 if(HAVE_MMAP AND HAVE_THREAD_LOCAL_STORAGE)
345   SET(HAVE_MMALLOC 1)
346 else()
347   SET(HAVE_MMALLOC 0)
348   if(enable_model-checking)
349     message(STATUS "Warning: support for model-checking has been disabled because you are missing either mmap or __thread.")
350   endif()
351   SET(enable_model-checking 0)
352 endif()
353
354 if(enable_jedule)
355   set(HAVE_JEDULE 1)
356 else()
357   set(HAVE_JEDULE 0)
358 endif()
359
360 if(enable_mallocators)
361   SET(HAVE_MALLOCATOR 1)
362 else()
363   SET(HAVE_MALLOCATOR 0)
364 endif()
365
366 include(FindLibunwind)
367 if(HAVE_LIBUNWIND)
368   SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind -lunwind-ptrace")
369   # This supposes that the host machine is either an AMD or a X86.
370   # This is deeply wrong, and should be fixed by manually loading -lunwind-PLAT (FIXME)
371   if(PROCESSOR_x86_64)
372     SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86_64")
373   else()
374     SET(SIMGRID_DEP "${SIMGRID_DEP} -lunwind-x86")
375   endif()
376 else()
377   if(enable_model-checking)
378     message(FATAL_ERROR "Please either install the libunwind7-dev package (or equivalent) or turn off the model-checking option of SimGrid.")
379   endif()
380 endif()
381
382 if(enable_model-checking AND NOT "${CMAKE_SYSTEM}" MATCHES "Linux")
383   message(WARNING "Support for model-checking has not been enabled on ${CMAKE_SYSTEM}: disabling it")
384   set(enable_model-checking FALSE)
385   set(HAVE_MC 0)
386 endif()
387
388 if(enable_model-checking)
389   SET(HAVE_MC 1)
390   
391   include(FindLibdw)  
392   SET(SIMGRID_DEP "${SIMGRID_DEP} -ldw")
393 else()
394   SET(HAVE_MC 0)  
395 endif()
396
397 if (enable_model-checking AND enable_ns3)
398   message(FATAL_ERROR "Cannot activate both model-checking and NS3 bindings: NS3 pull too much dependencies for the MC to work")
399 endif()
400
401 if(enable_smpi)
402   SET(HAVE_SMPI 1)
403   if("${CMAKE_SYSTEM}" MATCHES "Linux|FreeBSD")
404     SET(USE_LIBUTIL 0)
405     SET(HAVE_PRIVATIZATION 1)
406   else()
407     message (STATUS "Warning:  no support for SMPI automatic privatization on this platform")
408     SET(HAVE_PRIVATIZATION 0)
409   endif()
410 else()
411   SET(HAVE_SMPI 0)
412 endif()
413
414 #--------------------------------------------------------------------------------------------------
415 ### Check for GNU dynamic linker
416 CHECK_INCLUDE_FILE("dlfcn.h" HAVE_DLFCN_H)
417 if (HAVE_DLFCN_H)
418   execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_gnu_dynlinker.c ${DL_LIBRARY} -o test_gnu_ld
419                   WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
420                   OUTPUT_VARIABLE HAVE_GNU_LD_compil
421   )
422   if(HAVE_GNU_LD_compil)
423     set(HAVE_GNU_LD 0)
424     message(STATUS "Warning: test program toward GNU ld failed to compile:")
425     message(STATUS "${HAVE_GNU_LD_comp_output}")
426   else()
427     execute_process(COMMAND ./test_gnu_ld
428                     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
429                     RESULT_VARIABLE HAVE_GNU_LD_run
430                     OUTPUT_VARIABLE var_exec
431                    )
432
433     if(NOT HAVE_GNU_LD_run)
434       set(HAVE_GNU_LD 1)
435       message(STATUS "We are using GNU dynamic linker")
436     else()
437       set(HAVE_GNU_LD 0)
438       message(STATUS "Warning: error while checking for GNU ld:")
439       message(STATUS "Test output: '${var_exec}'")
440       message(STATUS "Exit status: ${HAVE_GNU_LD_run}")
441     endif()
442     file(REMOVE test_gnu_ld)
443   endif()
444 endif()
445
446 #--------------------------------------------------------------------------------------------------
447 ### Initialize of CONTEXT THREADS
448
449 set(HAVE_THREAD_CONTEXTS 0)
450 if(HAVE_PTHREAD)
451   ### Test that we have a way to create semaphores
452
453   if(HAVE_SEM_OPEN_LIB)
454     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_open.c -lpthread -o sem_open
455       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
456       OUTPUT_VARIABLE HAVE_SEM_OPEN_compil
457     )
458
459     # Test sem_open by compiling:
460     if(HAVE_SEM_OPEN_compil)
461       set(HAVE_SEM_OPEN 0)
462       message(STATUS "Warning: sem_open not compilable")
463       message(STATUS "HAVE_SEM_OPEN_comp_output: ${HAVE_SEM_OPEN_comp_output}")
464     else()
465       set(HAVE_SEM_OPEN 1)
466       message(STATUS "sem_open is compilable")
467     endif()
468
469     # If we're not crosscompiling, we check by executing the program:
470     if (HAVE_SEM_OPEN AND NOT CMAKE_CROSSCOMPILING)
471       execute_process(COMMAND ./sem_open
472         WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
473         RESULT_VARIABLE HAVE_SEM_OPEN_run
474         OUTPUT_VARIABLE var_compil
475       )
476       if (NOT HAVE_SEM_OPEN_run)
477         set(HAVE_SEM_OPEN 1)
478         message(STATUS "sem_open is executable")
479       else()
480         set(HAVE_SEM_OPEN 0)
481         if(EXISTS "${CMAKE_BINARY_DIR}/sem_open")
482           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_open exists!")
483         else()
484           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_open not exists!")
485         endif()
486         message(STATUS "Warning: sem_open not executable")
487         message(STATUS "Compilation output: '${var_compil}'")
488         message(STATUS "Exit result of sem_open: ${HAVE_SEM_OPEN_run}")
489       endif()
490     endif()
491     file(REMOVE sem_open)
492   else()
493     set(HAVE_SEM_OPEN 0)
494   endif()
495
496   if(HAVE_SEM_INIT_LIB)
497     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_init.c -lpthread -o sem_init
498       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
499       RESULT_VARIABLE HAVE_SEM_INIT_run 
500       OUTPUT_VARIABLE HAVE_SEM_INIT_compil)
501
502     # Test sem_init by compiling:
503     if(HAVE_SEM_INIT_compil)
504       set(HAVE_SEM_INIT 0)
505       message(STATUS "Warning: sem_init not compilable")
506       message(STATUS "HAVE_SEM_INIT_comp_output: ${HAVE_SEM_OPEN_comp_output}")
507     else()
508       set(HAVE_SEM_INIT 1)
509       message(STATUS "sem_init is compilable")
510     endif()
511
512     # If we're not crosscompiling, we check by executing the program:
513     if (HAVE_SEM_INIT AND NOT CMAKE_CROSSCOMPILING)
514       execute_process(COMMAND ./sem_init
515         WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
516         RESULT_VARIABLE HAVE_SEM_INIT_run
517         OUTPUT_VARIABLE var_compil
518       )
519       if (NOT HAVE_SEM_INIT_run)
520         set(HAVE_SEM_INIT 1)
521         message(STATUS "sem_init is executable")
522       else()
523         set(HAVE_SEM_INIT 0)
524         if(EXISTS "${CMAKE_BINARY_DIR}/sem_init")
525           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_init exists!")
526         else()
527           message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_init not exists!")
528         endif()
529         message(STATUS "Warning: sem_init not executable")
530         message(STATUS "Compilation output: '${var_compil}'")
531         message(STATUS "Exit result of sem_init: ${HAVE_SEM_INIT_run}")
532       endif()
533     endif()
534     file(REMOVE sem_init)
535   else() 
536     set(HAVE_SEM_INIT 0)  
537   endif()
538
539   if(NOT HAVE_SEM_OPEN AND NOT HAVE_SEM_INIT)
540     message(FATAL_ERROR "Semaphores are not usable (neither sem_open nor sem_init is both compilable and executable), but they are mandatory to threads (you may need to mount /dev).")
541   endif()
542
543   set(HAVE_THREAD_CONTEXTS 1)
544   message("-- Support for thread context factory ok.")
545 endif()
546
547 set(HAVE_UCONTEXT_CONTEXTS 0)
548 if(NOT HAVE_UCONTEXT_H)
549   message("-- No ucontext factory: <ucontext.h> not found.")
550 elseif(APPLE)
551   message("-- No ucontext factory: Apple don't want us to use them.")
552   set(HAVE_UCONTEXT_H 0)
553 else()
554   try_compile(compile_makecontext ${CMAKE_BINARY_DIR} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_makecontext.c
555     OUTPUT_VARIABLE compile_makecontext_output)
556
557   #If can have both context
558   if(compile_makecontext)
559     set(HAVE_UCONTEXT_CONTEXTS 1)
560     message("-- Support for ucontext factory ok.")
561   else()
562     message("-- Error: <ucontext.h> exists, but makecontext is not compilable. Compilation output:\n ${compile_makecontext_output}")
563     message("-- No ucontext factory: makecontext() is not compilable.")
564   endif()
565
566   # Stack setup (size and address)
567   try_run(RUN_makecontext_VAR COMPILE_makecontext_VAR
568     ${CMAKE_BINARY_DIR} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_stacksetup.c
569     RUN_OUTPUT_VARIABLE stack_setup)
570
571   LIST(LENGTH stack_setup stack_setup_len)
572   if("${stack_setup_len}" STREQUAL "2")
573     LIST(GET stack_setup 0 makecontext_addr)
574     LIST(GET stack_setup 1 makecontext_size)
575     set(sg_makecontext_stack_addr "#define sg_makecontext_stack_addr(skaddr) (${makecontext_addr})")
576     set(sg_makecontext_stack_size "#define sg_makecontext_stack_size(sksize) (${makecontext_size})")
577   else()
578     message(FATAL_ERROR "Could not figure out the stack setup. Compil: ${RUN_makecontext_VAR}. Exec: ${COMPILE_makecontext_VAR}. Output: ${stack_setup}")
579   endif()
580 endif()
581
582 # Stack growth direction (upward or downward). Used for the following contexts: SysV, raw, Boost
583 try_run(RUN_stackgrowth_VAR COMPILE_stackgrowth_VAR
584   ${CMAKE_BINARY_DIR}
585   ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_stackgrowth.c
586   RUN_OUTPUT_VARIABLE stack
587   COPY_FILE test_stackgrowth)
588
589 if("${stack}" STREQUAL "down")
590   set(PTH_STACKGROWTH "-1")
591 elseif("${stack}" STREQUAL "up")
592   set(PTH_STACKGROWTH "1")
593 else()
594   if("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64")
595     set(PTH_STACKGROWTH "-1")
596   elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "i686")
597     set(PTH_STACKGROWTH "-1")
598   else()
599     message(FATAL_ERROR "Could not figure out the stack direction. Test prog returned: ${stack}; CMAKE_SYSTEM_PROCESSOR: ${CMAKE_SYSTEM_PROCESSOR}.")
600   endif()
601 endif()
602 # If the test ran well, remove the test binary
603 file(REMOVE test_stackgrowth)
604 #--------------------------------------------------------------------------------------------------
605
606 ### check for addr2line
607 find_path(ADDR2LINE NAMES addr2line     PATHS NO_DEFAULT_PATHS)
608 if(ADDR2LINE)
609   set(ADDR2LINE "${ADDR2LINE}/addr2line")
610 endif()
611
612 ###############
613 ## GIT version check
614 ##
615 if(EXISTS ${CMAKE_HOME_DIRECTORY}/.git/)
616   execute_process(
617      COMMAND git remote
618      COMMAND head -n 1
619      WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
620      OUTPUT_VARIABLE remote
621      OUTPUT_STRIP_TRAILING_WHITESPACE)
622   #message(STATUS "Git remote: ${remote}")
623   execute_process(COMMAND git config --get remote.${remote}.url
624      WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
625      OUTPUT_VARIABLE url
626      OUTPUT_STRIP_TRAILING_WHITESPACE)
627   #message(STATUS "Git url: ${url}")
628   if(url)
629     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log --pretty=oneline --abbrev-commit -1
630        WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
631        OUTPUT_VARIABLE GIT_VERSION
632        OUTPUT_STRIP_TRAILING_WHITESPACE)
633     message(STATUS "Git version: ${GIT_VERSION}")
634
635     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log -n 1 --pretty=format:%ai .
636        WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
637        OUTPUT_VARIABLE GIT_DATE 
638        OUTPUT_STRIP_TRAILING_WHITESPACE)
639     message(STATUS "Git date: ${GIT_DATE}")
640     string(REGEX REPLACE " .*" "" GIT_VERSION "${GIT_VERSION}")
641
642     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log --pretty=format:%H -1
643        WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
644        OUTPUT_VARIABLE SIMGRID_GITHASH
645        OUTPUT_STRIP_TRAILING_WHITESPACE)
646   endif()
647 elseif(EXISTS ${CMAKE_HOME_DIRECTORY}/.gitversion)
648   FILE(STRINGS ${CMAKE_HOME_DIRECTORY}/.gitversion GIT_VERSION)
649 endif()
650
651 ### Generate the required headers and scripts
652 #############################################
653
654 # gcc makes no difference between "#define HAVE_FOOBAR" and "#define HAVE_FOOBAR 0" by default, 
655 # but this too error prone. If you forget to include the config.h, you get weird segfaults.
656 # If you include it everywhere, everything gets recompiled everytime.
657 # So we include only where needed, and compile with -Wundef to notice the missing includes.
658 # But cmake sometimes defines to the empty definition (#define HAVE_VALGRIND_H).
659 # So we have to make sure that everything got a decent value before generating the files.
660 foreach(var HAVE_BACKTRACE HAVE_EXECINFO_H HAVE_FUTEX_H HAVE_GETDTABLESIZE HAVE_GETTIMEOFDAY HAVE_MMAP HAVE_NANOSLEEP HAVE_POPEN
661             HAVE_POSIX_GETTIME HAVE_PROCESS_VM_READV HAVE_SIGNAL_H HAVE_SYS_PARAM_H HAVE_SYS_SYSCTL_H HAVE_SYSCONF 
662             HAVE_UCONTEXT_H HAVE_UNISTD_H HAVE_VALGRIND_H HAVE_VASPRINTF)
663   if(${var})
664     set(${var} 1)
665   else()
666     set(${var} 0)
667   endif()
668 endforeach()
669
670 # Avoid triggering a (full) rebuild by touching the files if they did not really change
671 configure_file("${CMAKE_HOME_DIRECTORY}/tools/cmake/src/internal_config.h.in" "${CMAKE_BINARY_DIR}/src/internal_config.h.generated"    @ONLY IMMEDIATE)
672 configure_file("${CMAKE_HOME_DIRECTORY}/include/simgrid_config.h.in"          "${CMAKE_BINARY_DIR}/include/simgrid_config.h.generated" @ONLY IMMEDIATE)
673 execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_BINARY_DIR}/src/internal_config.h.generated ${CMAKE_BINARY_DIR}/src/internal_config.h)
674 execute_process(COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_BINARY_DIR}/include/simgrid_config.h.generated ${CMAKE_BINARY_DIR}/include/simgrid_config.h)
675 file(REMOVE ${CMAKE_BINARY_DIR}/src/internal_config.h.generated)
676 file(REMOVE ${CMAKE_BINARY_DIR}/include/simgrid_config.h.generated)
677
678 # We need two versions of the SMPI scripts because they contain the path to the library
679 # so, it depends of whether SimGrid is installed, or run from the sources (during the build)
680
681 file(READ ${CMAKE_HOME_DIRECTORY}/src/smpi/smpitools.sh SMPITOOLS_SH) # Definitions shared amongst all SMPI scripts, inlined in each of them
682
683 ### SMPI script used when simgrid is installed
684 set(exec_prefix ${CMAKE_INSTALL_PREFIX})
685 set(includeflag "-I${CMAKE_INSTALL_PREFIX}/include -I${CMAKE_INSTALL_PREFIX}/include/smpi")
686 set(includedir "${CMAKE_INSTALL_PREFIX}/include")
687 set(libdir ${exec_prefix}/lib)
688 set(CMAKE_SMPI_COMMAND "export LD_LIBRARY_PATH=\"${CMAKE_INSTALL_PREFIX}/lib")
689 if(NS3_LIBRARY_PATH)
690   set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${NS3_LIBRARY_PATH}")
691 endif()
692 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:\${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\"")
693
694 configure_file(${CMAKE_HOME_DIRECTORY}/include/smpi/mpif.h.in ${CMAKE_BINARY_DIR}/include/smpi/mpif.h @ONLY)
695 foreach(script cc cxx ff f90 run)
696   configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpi${script}.in ${CMAKE_BINARY_DIR}/bin/smpi${script} @ONLY)
697 endforeach()
698
699 ### SMPI scripts used when compiling simgrid 
700 set(exec_prefix "${CMAKE_BINARY_DIR}/smpi_script/")
701 set(includeflag "-I${CMAKE_HOME_DIRECTORY}/include -I${CMAKE_HOME_DIRECTORY}/include/smpi")
702 set(includeflag "${includeflag} -I${CMAKE_BINARY_DIR}/include -I${CMAKE_BINARY_DIR}/include/smpi")
703 set(includedir "${CMAKE_HOME_DIRECTORY}/include")
704 set(libdir "${CMAKE_BINARY_DIR}/lib")
705 set(CMAKE_SMPI_COMMAND "export LD_LIBRARY_PATH=\"${CMAKE_BINARY_DIR}/lib")
706 if(NS3_LIBRARY_PATH)
707   set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${NS3_LIBRARY_PATH}")
708 endif()
709 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:\${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\"")
710
711 foreach(script cc cxx ff f90 run)
712   configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpi${script}.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpi${script} @ONLY)
713 endforeach()
714
715 if(NOT WIN32)
716   foreach(script cc cxx ff f90 run)
717     execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpi${script})
718     execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpi${script})
719   endforeach()
720 endif()
721
722 set(generated_headers_to_install
723   ${CMAKE_CURRENT_BINARY_DIR}/include/smpi/mpif.h
724   ${CMAKE_CURRENT_BINARY_DIR}/include/simgrid_config.h
725   )
726
727 set(generated_headers  ${CMAKE_CURRENT_BINARY_DIR}/src/internal_config.h )
728
729 set(generated_files_to_clean
730   ${generated_headers}
731   ${generated_headers_to_install}
732   ${CMAKE_BINARY_DIR}/bin/smpicc
733   ${CMAKE_BINARY_DIR}/bin/smpicxx
734   ${CMAKE_BINARY_DIR}/bin/smpiff
735   ${CMAKE_BINARY_DIR}/bin/smpif90
736   ${CMAKE_BINARY_DIR}/bin/smpirun
737   ${CMAKE_BINARY_DIR}/bin/colorize
738   ${CMAKE_BINARY_DIR}/bin/simgrid_update_xml
739   ${CMAKE_BINARY_DIR}/examples/smpi/tracing/smpi_traced.trace
740   )
741
742 if(NOT "${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_HOME_DIRECTORY}")
743   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions0.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions0.txt COPYONLY)
744   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions1.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions1.txt COPYONLY)
745   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_allReduce.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allReduce.txt COPYONLY)
746   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_barrier.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_barrier.txt COPYONLY)
747   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_bcast.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_bcast.txt COPYONLY)
748   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_with_isend.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_with_isend.txt COPYONLY)
749   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_alltoall.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoall.txt COPYONLY)
750   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_alltoallv.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoallv.txt COPYONLY)
751   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_waitall.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_waitall.txt COPYONLY)
752   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_reducescatter.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_reducescatter.txt COPYONLY)
753   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_gather.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_gather.txt COPYONLY)
754   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_allgatherv.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allgatherv.txt COPYONLY)
755   configure_file(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/hostfile ${CMAKE_BINARY_DIR}/teshsuite/smpi/hostfile COPYONLY)
756
757   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/description_file ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/description_file COPYONLY)
758   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/README ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/README COPYONLY)
759   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/smpi_replay.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/smpi_replay.txt COPYONLY)
760   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace0.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace0.txt COPYONLY)
761   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace1.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace1.txt COPYONLY)
762   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace2.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace2.txt COPYONLY)
763   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace3.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace3.txt COPYONLY)
764   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace4.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace4.txt COPYONLY)
765   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace5.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace5.txt COPYONLY)
766   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace6.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace6.txt COPYONLY)
767   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace7.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace7.txt COPYONLY)
768   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace8.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace8.txt COPYONLY)
769   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace9.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace9.txt COPYONLY)
770   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace10.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace10.txt COPYONLY)
771   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace11.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace11.txt COPYONLY)
772   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace12.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace12.txt COPYONLY)
773   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace13.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace13.txt COPYONLY)
774   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace14.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace14.txt COPYONLY)
775   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace15.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace15.txt COPYONLY)
776   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace16.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace16.txt COPYONLY)
777   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace17.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace17.txt COPYONLY)
778   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace18.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace18.txt COPYONLY)
779   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace19.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace19.txt COPYONLY)
780   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace20.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace20.txt COPYONLY)
781   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace21.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace21.txt COPYONLY)
782   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace22.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace22.txt COPYONLY)
783   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace23.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace23.txt COPYONLY)
784   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace24.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace24.txt COPYONLY)
785   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace25.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace25.txt COPYONLY)
786   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace26.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace26.txt COPYONLY)
787   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace27.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace27.txt COPYONLY)
788   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace28.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace28.txt COPYONLY)
789   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace29.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace29.txt COPYONLY)
790   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace30.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace30.txt COPYONLY)
791   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace31.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace31.txt COPYONLY)
792
793   set(generated_files_to_clean
794     ${generated_files_to_clean}
795     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions0.txt
796     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions1.txt
797     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allReduce.txt
798     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_barrier.txt
799     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_bcast.txt
800     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_with_isend.txt
801     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoall.txt
802     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoallv.txt
803     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_waitall.txt
804     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_gather.txt
805     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allgatherv.txt
806     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_reducescatter.txt
807     ${CMAKE_BINARY_DIR}/teshsuite/smpi/hostfile
808     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/description_file
809     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/README
810     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/smpi_replay.txt
811     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace0.txt
812     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace1.txt
813     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace2.txt
814     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace3.txt
815     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace4.txt
816     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace5.txt
817     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace6.txt
818     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace7.txt
819     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace8.txt
820     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace9.txt
821     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace10.txt
822     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace11.txt
823     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace12.txt
824     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace13.txt
825     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace14.txt
826     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace15.txt
827     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace16.txt
828     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace17.txt
829     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace18.txt
830     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace19.txt
831     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace20.txt
832     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace21.txt
833     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace22.txt
834     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace23.txt
835     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace24.txt
836     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace25.txt
837     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace26.txt
838     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace27.txt
839     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace28.txt
840     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace29.txt
841     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace30.txt
842     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace31.txt
843     )
844 endif()
845
846 SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES
847   "${generated_files_to_clean}")
848
849 ### Define source packages for Libs
850 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/DefinePackages.cmake)
851
852 ### Build some Maintainer files
853 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MaintainerMode.cmake)
854 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/UnitTesting.cmake)
855
856 ### Setup gcc & clang flags
857 if (NOT MSVC)
858   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/GCCFlags.cmake)
859 endif()
860
861 ### Make Libs
862 if(NOT WIN32)
863   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MakeLib.cmake)
864 else()
865   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MakeLibWin.cmake)
866 endif()
867
868 if(enable_java)
869   include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Java.cmake)
870 endif()
871
872 ### Make tests
873 if(enable_memcheck_xml)
874   set(enable_memcheck true)
875 endif()
876
877 INCLUDE(CTest)
878 ENABLE_TESTING()
879 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Tests.cmake)
880 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/CTestConfig.cmake)
881
882 ### Define subdirectories
883 foreach(cmakefile ${CMAKEFILES_TXT})
884   string(REPLACE "/CMakeLists.txt" "" repository ${cmakefile})
885   add_subdirectory("${CMAKE_HOME_DIRECTORY}/${repository}")
886 endforeach()
887
888 ### Setup the distrib
889 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Distrib.cmake)
890
891 ### Build the docs if asked to
892 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Documentation.cmake)
893
894 ### Print the result of configuration
895 message("")
896 message("##########################################")
897 message("#### Content of src/internal_config.h ####")
898 message("##########################################")
899 file(STRINGS ${CMAKE_CURRENT_BINARY_DIR}/src/internal_config.h config_output)
900 LIST(REMOVE_AT config_output 0 1 2 3 4 5 6 7 8 9 10) # Pass the file header
901 foreach(line ${config_output})
902   message("   ${line}")
903 endforeach()
904 message("##########################################")
905 message("####   Content of simgrid_config.h    ####")
906 message("##########################################")
907 file(STRINGS ${CMAKE_CURRENT_BINARY_DIR}/include/simgrid_config.h config_output)
908 LIST(REMOVE_AT config_output 0 1 2 3 4 5 6 7 8 9 -1) # Pass the file header
909 foreach(line ${config_output})
910   message("   ${line}")
911 endforeach()
912 message("##########################################")
913 message("####   End of configuration headers   ####")
914 message("##########################################")
915
916 message("\nConfiguration of package `simgrid':")
917 message("        Home directory ..............: ${CMAKE_HOME_DIRECTORY}")
918 message("        Build Name ..................: ${BUILDNAME}")
919 message("        Cmake Generator .............: ${CMAKE_GENERATOR}")
920 message("        Site ........................: ${SITE}")
921 message("        Install prefix ..............: ${CMAKE_INSTALL_PREFIX}")
922 if(release)
923   message("        Release .....................: simgrid-${release_version}${SIMGRID_VERSION_EXTRA} (release build)")
924 else()
925   message("        Release .....................: simgrid-${release_version}${SIMGRID_VERSION_EXTRA} (development build)")
926 endif()
927 message("")
928 message("        Compiler: C .................: ${CMAKE_C_COMPILER} (id: ${CMAKE_C_COMPILER_ID})")
929 message("                version .............: ${CMAKE_C_COMPILER_VERSION}")
930 message("                is gnu ..............: ${CMAKE_COMPILER_IS_GNUCC}")
931 message("        Compiler: C++ ...............: ${CMAKE_CXX_COMPILER} (id: ${CMAKE_CXX_COMPILER_ID})")
932 message("                version .............: ${CMAKE_CXX_COMPILER_VERSION}")
933 if(${Java_FOUND})
934   message("        Compiler: Javac .............: ${Java_JAVAC_EXECUTABLE}")
935   message("                version .............: ${Java_VERSION_STRING}")
936 if(${SWIG_FOUND})
937   message("                SWIG ................: Version ${SWIG_VERSION} found.")
938 else()
939   message("                SWIG ................: Missing.")
940 endif()
941 endif()
942 if(CMAKE_Fortran_COMPILER)
943   message("        Compiler: Fortran ...........: ${SAVED_Fortran_COMPILER} (id: ${CMAKE_Fortran_COMPILER_ID})")
944   message("                version .............: ${CMAKE_Fortran_COMPILER_VERSION}")
945 endif()
946 message("        Linker: .....................: ${CMAKE_LINKER}")
947 message("                version .............: ${LINKER_VERSION}")
948 message("        Make program: ...............: ${CMAKE_MAKE_PROGRAM}")
949 message("")
950 message("        CFlags ......................: ${CMAKE_C_FLAGS}")
951 message("        CXXFlags ....................: ${CMAKE_CXX_FLAGS}")
952 message("        LDFlags .....................: ${CMAKE_C_LINK_FLAGS}")
953 message("        with LTO ....................: ${enable_lto}")
954 message("")
955
956 if (HAVE_NS3)
957   message("        Compile NS-3 ................: yes (path: ${NS3_PATH})")
958 else()
959   message("        Compile NS-3 ................: NO  (hint: ${NS3_HINT})")
960 endif()
961
962 if (${Java_FOUND})
963   message("        Compile Java ................: yes")
964   message("          Native lib in jar .........: ${enable_lib_in_jar}")
965 else()
966   message("        Compile Java ................: NO")
967 endif()
968 message("        Compile Lua .................: ${HAVE_LUA}")
969 message("        Compile Smpi ................: ${HAVE_SMPI}")
970 message("          Smpi fortran ..............: ${SMPI_FORTRAN}")
971 message("          MPICH3 testsuite ..........: ${enable_smpi_MPICH3_testsuite}")
972 message("          Privatization .............: ${HAVE_PRIVATIZATION}")
973 message("          PAPI support...............: ${HAVE_PAPI}")
974 message("        Compile Boost.Context support: ${HAVE_BOOST_CONTEXTS}")
975 message("")
976 message("        Maintainer mode .............: ${enable_maintainer_mode}")
977 message("        Documentation................: ${enable_documentation}")
978 message("        Model checking ..............: ${HAVE_MC}")
979 message("        Jedule  mode ................: ${HAVE_JEDULE}")
980 message("        Graphviz mode ...............: ${HAVE_GRAPHVIZ}")
981 message("        Mallocators .................: ${enable_mallocators}")
982 message("")
983 message("        Simgrid dependencies ........: ${SIMGRID_DEP}")
984 message("")
985
986 execute_process(COMMAND ${CMAKE_COMMAND} -E make_directory ${PROJECT_BINARY_DIR}/Testing/Notes/)
987 file(WRITE ${PROJECT_BINARY_DIR}/Testing/Notes/Build  "GIT version : ${GIT_VERSION}\n")
988 file(APPEND ${PROJECT_BINARY_DIR}/Testing/Notes/Build "Release     : simgrid-${release_version}\n")
989
990 INCLUDE(Dart)