Logo AND Algorithmique Numérique Distribuée

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