Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix previous commit
[simgrid.git] / buildtools / Cmake / CompleteInFiles.cmake
1 set(CMAKE_MODULE_PATH
2   ${CMAKE_MODULE_PATH}
3   ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/Modules
4   )
5
6 # x86_64
7 # x86
8 # i.86
9
10 ### Determine the assembly flavor that we need today
11 include(CMakeDetermineSystem)
12 IF(CMAKE_SYSTEM_PROCESSOR MATCHES ".86|AMD64|amd64")
13   IF(${ARCH_32_BITS})
14     message(STATUS "System processor: i686 (${CMAKE_SYSTEM_PROCESSOR}, 32 bits)")
15     set(PROCESSOR_i686 1)
16   ELSE()
17     message(STATUS "System processor: x86_64 (${CMAKE_SYSTEM_PROCESSOR}, 64 bits)")
18     set(PROCESSOR_x86_64 1)
19   ENDIF()
20   set(HAVE_RAWCTX 1)
21
22 ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^alpha")
23   message(STATUS "System processor: alpha")
24
25 ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
26   # Subdir is "arm" for both big-endian (arm) and little-endian (armel).
27   message(STATUS "System processor: arm")
28
29 ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^mips")
30   # mips* machines are bi-endian mostly so processor does not tell
31   # endianess of the underlying system.
32   message(STATUS "System processor: ${CMAKE_SYSTEM_PROCESSOR}" "mips" "mipsel" "mipseb")
33
34 ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64")
35   message(STATUS "System processor: ppc64")
36
37 ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)")
38   message(STATUS "System processor: ppc")
39
40 ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^sparc")
41   # Both flavours can run on the same processor
42   message(STATUS "System processor: ${CMAKE_SYSTEM_PROCESSOR}" "sparc" "sparcv9")
43
44 ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^(parisc|hppa)")
45   message(STATUS "System processor: parisc" "parisc64")
46
47 ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^s390")
48   # s390 binaries can run on s390x machines
49   message(STATUS "System processor: ${CMAKE_SYSTEM_PROCESSOR}" "s390" "s390x")
50
51 ELSEIF(CMAKE_SYSTEM_PROCESSOR MATCHES "^sh")
52   message(STATUS "System processor: sh")
53
54 ELSE() #PROCESSOR NOT FOUND
55   message(STATUS "PROCESSOR NOT FOUND: ${CMAKE_SYSTEM_PROCESSOR}")
56
57 ENDIF()
58
59 if(ARCH_32_BITS)
60   set(MPI_ADDRESS_SIZE 4)
61 else()
62   set(MPI_ADDRESS_SIZE 8)
63 endif()
64
65 message(STATUS "Cmake version ${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}")
66
67 include(CheckFunctionExists)
68 include(CheckTypeSize)
69 include(CheckIncludeFile)
70 include(CheckIncludeFiles)
71 include(CheckLibraryExists)
72 include(TestBigEndian)
73 TEST_BIG_ENDIAN(BIGENDIAN)
74
75 include(FindGraphviz)
76 include(FindLibSigc++)
77
78 set(HAVE_GTNETS 0)
79 if(enable_gtnets)
80   include(FindGTnets)
81 endif()
82 if(enable_java)
83   find_package(Java REQUIRED COMPONENTS Runtime Development)
84   find_package(JNI REQUIRED)
85   message("-- [Java] JNI found: ${JNI_FOUND}")
86   message("-- [Java] JNI include dirs: ${JNI_INCLUDE_DIRS}")
87   if(enable_maintainer_mode)
88     find_package(SWIG REQUIRED)
89     include(UseSWIG)
90     message("-- [Java] Swig found: ${SWIG_FOUND} (version ${SWIG_VERSION})")
91   endif()
92   set(HAVE_Java 1)
93 endif()
94 if(enable_scala)
95   find_package(Scala REQUIRED)
96   message("-- [Scala] scalac found: ${SCALA_COMPILE}")
97   set(HAVE_Scala 1)
98 endif()
99 if(enable_lua)
100   include(FindLua51Simgrid)
101 endif()
102 set(HAVE_NS3 0)
103 if(enable_ns3)
104   include(FindNS3)
105 endif()
106
107 # algorithm 1.50.0
108 # function 1.23.0
109 # intrusive 1.35.0
110 # lambda 1.28.0
111 # signals2 1.39.0
112 find_package(Boost 1.42 REQUIRED)
113 if(Boost_FOUND)
114   include_directories(${Boost_INCLUDE_DIRS})
115 else()
116   if(APPLE) #MAC
117     message(FATAL_ERROR, "Failed to find Boost libraries (Try to install them with 'sudo fink install boost1.53.nopython')")
118   else()
119     message(FATAL_ERROR, "Failed to find Boost libraries")
120   endif()
121 endif()
122
123 # Checks for header libraries functions.
124 CHECK_LIBRARY_EXISTS(dl      dlopen                  "" HAVE_DLOPEN_IN_LIBDL)
125 CHECK_LIBRARY_EXISTS(execinfo backtrace              "" HAVE_BACKTRACE_IN_LIBEXECINFO)
126 CHECK_LIBRARY_EXISTS(pthread pthread_create          "" pthread)
127 CHECK_LIBRARY_EXISTS(pthread sem_init                "" HAVE_SEM_INIT_LIB)
128 CHECK_LIBRARY_EXISTS(pthread sem_open                "" HAVE_SEM_OPEN_LIB)
129 CHECK_LIBRARY_EXISTS(pthread sem_timedwait           "" HAVE_SEM_TIMEDWAIT_LIB)
130 CHECK_LIBRARY_EXISTS(pthread pthread_mutex_timedlock "" HAVE_MUTEX_TIMEDLOCK_LIB)
131 CHECK_LIBRARY_EXISTS(rt      clock_gettime           "" HAVE_POSIX_GETTIME)
132
133 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
134   set(CMAKE_REQUIRED_DEFINITIONS "-D_XOPEN_SOURCE")
135 endif()
136
137 CHECK_INCLUDE_FILES("time.h;sys/time.h" TIME_WITH_SYS_TIME)
138 CHECK_INCLUDE_FILES("stdlib.h;stdarg.h;string.h;float.h" STDC_HEADERS)
139 CHECK_INCLUDE_FILE("pthread.h" HAVE_PTHREAD_H)
140 CHECK_INCLUDE_FILE("valgrind/valgrind.h" HAVE_VALGRIND_VALGRIND_H)
141 CHECK_INCLUDE_FILE("socket.h" HAVE_SOCKET_H)
142 CHECK_INCLUDE_FILE("sys/socket.h" HAVE_SYS_SOCKET_H)
143 CHECK_INCLUDE_FILE("stat.h" HAVE_STAT_H)
144 CHECK_INCLUDE_FILE("sys/stat.h" HAVE_SYS_STAT_H)
145 CHECK_INCLUDE_FILE("windows.h" HAVE_WINDOWS_H)
146 CHECK_INCLUDE_FILE("winsock.h" HAVE_WINSOCK_H)
147 CHECK_INCLUDE_FILE("winsock2.h" HAVE_WINSOCK2_H)
148 CHECK_INCLUDE_FILE("WinDef.h" HAVE_WINDEF_H)
149 CHECK_INCLUDE_FILE("errno.h" HAVE_ERRNO_H)
150 CHECK_INCLUDE_FILE("unistd.h" HAVE_UNISTD_H)
151 CHECK_INCLUDE_FILE("execinfo.h" HAVE_EXECINFO_H)
152 CHECK_INCLUDE_FILE("signal.h" HAVE_SIGNAL_H)
153 CHECK_INCLUDE_FILE("sys/time.h" HAVE_SYS_TIME_H)
154 CHECK_INCLUDE_FILE("sys/param.h" HAVE_SYS_PARAM_H)
155 CHECK_INCLUDE_FILE("sys/sysctl.h" HAVE_SYS_SYSCTL_H)
156 CHECK_INCLUDE_FILE("time.h" HAVE_TIME_H)
157 CHECK_INCLUDE_FILE("inttypes.h" HAVE_INTTYPES_H)
158 CHECK_INCLUDE_FILE("memory.h" HAVE_MEMORY_H)
159 CHECK_INCLUDE_FILE("stdlib.h" HAVE_STDLIB_H)
160 CHECK_INCLUDE_FILE("strings.h" HAVE_STRINGS_H)
161 CHECK_INCLUDE_FILE("string.h" HAVE_STRING_H)
162 CHECK_INCLUDE_FILE("ucontext.h" HAVE_UCONTEXT_H)
163 CHECK_INCLUDE_FILE("stdio.h" HAVE_STDIO_H)
164 CHECK_INCLUDE_FILE("linux/futex.h" HAVE_FUTEX_H)
165
166 CHECK_FUNCTION_EXISTS(gettimeofday HAVE_GETTIMEOFDAY)
167 CHECK_FUNCTION_EXISTS(nanosleep HAVE_NANOSLEEP)
168 CHECK_FUNCTION_EXISTS(getdtablesize HAVE_GETDTABLESIZE)
169 CHECK_FUNCTION_EXISTS(sysconf HAVE_SYSCONF)
170 CHECK_FUNCTION_EXISTS(readv HAVE_READV)
171 CHECK_FUNCTION_EXISTS(popen HAVE_POPEN)
172 CHECK_FUNCTION_EXISTS(signal HAVE_SIGNAL)
173 CHECK_FUNCTION_EXISTS(snprintf HAVE_SNPRINTF)
174 CHECK_FUNCTION_EXISTS(vsnprintf HAVE_VSNPRINTF)
175 CHECK_FUNCTION_EXISTS(asprintf HAVE_ASPRINTF)
176 CHECK_FUNCTION_EXISTS(vasprintf HAVE_VASPRINTF)
177 CHECK_FUNCTION_EXISTS(makecontext HAVE_MAKECONTEXT)
178 CHECK_FUNCTION_EXISTS(mmap HAVE_MMAP)
179 CHECK_FUNCTION_EXISTS(process_vm_readv HAVE_PROCESS_VM_READV)
180
181 #Check if __thread is defined
182 execute_process(
183   COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_thread_storage.c"
184   WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
185   RESULT_VARIABLE HAVE_thread_storage_run
186   )
187
188 if(HAVE_thread_storage_run)
189   set(HAVE_THREAD_LOCAL_STORAGE 1)
190 else()
191   set(HAVE_THREAD_LOCAL_STORAGE 0)
192 endif()
193
194 # Our usage of mmap is Linux-specific (flag MAP_ANONYMOUS), but kFreeBSD uses a GNU libc
195 IF(NOT "${CMAKE_SYSTEM}" MATCHES "Linux" AND NOT "${CMAKE_SYSTEM}" MATCHES "kFreeBSD" AND NOT "${CMAKE_SYSTEM}" MATCHES "GNU" AND NOT  "${CMAKE_SYSTEM}" MATCHES "Darwin")
196   SET(HAVE_MMAP 0)
197   message(STATUS "Warning: MMAP is thought as non functional on this architecture (${CMAKE_SYSTEM})")
198 ENDIF()
199
200 if(HAVE_MMAP AND HAVE_THREAD_LOCAL_STORAGE)
201   SET(HAVE_MMALLOC 1)
202 else()
203   SET(HAVE_MMALLOC 0)
204 endif()
205
206 if(WIN32) #THOSE FILES ARE FUNCTIONS ARE NOT DETECTED BUT THEY SHOULD...
207   set(HAVE_UCONTEXT_H 1)
208   set(HAVE_MAKECONTEXT 1)
209   set(HAVE_SNPRINTF 1)
210   set(HAVE_VSNPRINTF 1)
211 endif()
212
213 set(CONTEXT_UCONTEXT 0)
214 SET(CONTEXT_THREADS 0)
215
216 if(enable_jedule)
217   SET(HAVE_JEDULE 1)
218 endif()
219
220 if(enable_latency_bound_tracking)
221   SET(HAVE_LATENCY_BOUND_TRACKING 1)
222 else()
223   if(enable_gtnets)
224     message(STATUS "Warning : Turning latency_bound_tracking to ON because GTNeTs is ON")
225     SET(enable_latency_bound_tracking ON)
226     SET(HAVE_LATENCY_BOUND_TRACKING 1)
227   else()
228     SET(HAVE_LATENCY_BOUND_TRACKING 0)
229   endif()
230 endif()
231
232 if(enable_mallocators)
233   SET(MALLOCATOR_IS_WANTED 1)
234 else()
235   SET(MALLOCATOR_IS_WANTED 0)
236 endif()
237
238 if(enable_model-checking AND HAVE_MMALLOC)
239   SET(HAVE_MC 1)
240   SET(MMALLOC_WANT_OVERRIDE_LEGACY 1)
241   include(FindLibunwind)
242   include(FindLibdw)
243 else()
244   if(enable_model-checking)
245     message(STATUS "Warning: support for model-checking has been disabled because HAVE_MMALLOC is false")
246   endif()
247   SET(HAVE_MC 0)
248   SET(HAVE_MMALLOC 0)
249   SET(MMALLOC_WANT_OVERRIDE_LEGACY 0)
250 endif()
251
252 if(enable_smpi)
253   include(FindGFortran)
254   SET(HAVE_SMPI 1)
255 endif()
256
257 #--------------------------------------------------------------------------------------------------
258 ### Check for some architecture dependent values
259 CHECK_TYPE_SIZE(int SIZEOF_INT)
260 CHECK_TYPE_SIZE(void* SIZEOF_VOIDP)
261
262 #--------------------------------------------------------------------------------------------------
263 ### Check for GNU dynamic linker
264 CHECK_INCLUDE_FILE("dlfcn.h" HAVE_DLFCN_H)
265 if (HAVE_DLFCN_H)
266     if(HAVE_DLOPEN_IN_LIBDL)
267       set(DL_LIBRARY "-ldl")
268     endif(HAVE_DLOPEN_IN_LIBDL)
269     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_gnu_dynlinker.c ${DL_LIBRARY} -o test_gnu_ld
270       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
271       OUTPUT_VARIABLE HAVE_GNU_LD_compil
272     )
273     if(HAVE_GNU_LD_compil)
274       set(HAVE_GNU_LD 0)
275       message(STATUS "Warning: test program toward GNU ld failed to compile:")
276       message(STATUS "${HAVE_GNU_LD_comp_output}")
277     else()
278
279       execute_process(COMMAND ./test_gnu_ld
280           WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
281           RESULT_VARIABLE HAVE_GNU_LD_run
282           OUTPUT_VARIABLE var_exec
283       )
284
285       if(NOT HAVE_GNU_LD_run)
286         set(HAVE_GNU_LD 1)
287         message(STATUS "We are using GNU dynamic linker")
288       else()
289         set(HAVE_GNU_LD 0)
290         message(STATUS "Warning: error while checking for GNU ld:")
291         message(STATUS "Test output: '${var_exec}'")
292         message(STATUS "Exit status: ${HAVE_GNU_LD_run}")
293       endif()
294       file(REMOVE test_gnu_ld)
295     endif()
296 endif()
297
298
299 #--------------------------------------------------------------------------------------------------
300 ### Initialize of CONTEXT THREADS
301
302 if(pthread)
303   set(pthread 1)
304 elseif(pthread)
305   set(pthread 0)
306 endif()
307
308 if(pthread)
309   ### Test that we have a way to create semaphores
310
311   if(HAVE_SEM_OPEN_LIB)
312     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_sem_open.c -lpthread -o sem_open
313     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
314     OUTPUT_VARIABLE HAVE_SEM_OPEN_compil
315     )
316
317     if(HAVE_SEM_OPEN_compil)
318       set(HAVE_SEM_OPEN 0)
319       message(STATUS "Warning: sem_open not compilable")
320       message(STATUS "HAVE_SEM_OPEN_comp_output: ${HAVE_SEM_OPEN_comp_output}")
321     else()
322       set(HAVE_SEM_OPEN 1)
323       message(STATUS "sem_open is compilable")
324     endif()
325
326     execute_process(COMMAND ./sem_open
327     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
328     RESULT_VARIABLE HAVE_SEM_OPEN_run
329     OUTPUT_VARIABLE var_compil
330     )
331     file(REMOVE sem_open)
332
333     if(NOT HAVE_SEM_OPEN_run)
334       set(HAVE_SEM_OPEN 1)
335       message(STATUS "sem_open is executable")
336     else()
337       set(HAVE_SEM_OPEN 0)
338       if(EXISTS "${CMAKE_BINARY_DIR}/sem_open")
339         message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_open exists!")
340       else()
341         message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_open not exists!")
342       endif()
343       message(STATUS "Warning: sem_open not executable")
344       message(STATUS "Compilation output: '${var_compil}'")
345       message(STATUS "Exit result of sem_open: ${HAVE_SEM_OPEN_run}")
346     endif()
347
348   else()
349     set(HAVE_SEM_OPEN 0)
350   endif()
351
352   if(HAVE_SEM_INIT_LIB)
353     execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_sem_init.c -lpthread -o sem_init
354     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
355     RESULT_VARIABLE HAVE_SEM_INIT_run OUTPUT_VARIABLE HAVE_SEM_INIT_compil)
356
357     if(HAVE_SEM_INIT_compil)
358       set(HAVE_SEM_INIT 0)
359       message(STATUS "Warning: sem_init not compilable")
360       message(STATUS "HAVE_SEM_INIT_comp_output: ${HAVE_SEM_OPEN_comp_output}")
361     else()
362       set(HAVE_SEM_INIT 1)
363       message(STATUS "sem_init is compilable")
364     endif()
365     execute_process(COMMAND ./sem_init
366     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
367     RESULT_VARIABLE HAVE_SEM_INIT_run
368     OUTPUT_VARIABLE var_compil
369     )
370     file(REMOVE sem_init)
371
372
373     if(NOT HAVE_SEM_INIT_run)
374       set(HAVE_SEM_INIT 1)
375       message(STATUS "sem_init is executable")
376     else()
377       set(HAVE_SEM_INIT 0)
378       if(EXISTS "${CMAKE_BINARY_DIR}/sem_init")
379         message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_init exists!")
380       else()
381         message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_init not exists!")
382       endif()
383       message(STATUS "Warning: sem_init not executable")
384       message(STATUS "Compilation output: '${var_compil}'")
385       message(STATUS "Exit result of sem_init: ${HAVE_SEM_INIT_run}")
386     endif()
387   endif()
388
389   if(NOT HAVE_SEM_OPEN AND NOT HAVE_SEM_INIT)
390     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).")
391   endif()
392
393   ### Test that we have a way to timewait for semaphores
394
395   if(HAVE_SEM_TIMEDWAIT_LIB)
396
397     execute_process(
398       COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_sem_timedwait.c -lpthread"
399       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
400       OUTPUT_VARIABLE HAVE_SEM_TIMEDWAIT_run
401       )
402
403     if(HAVE_SEM_TIMEDWAIT_run)
404       set(HAVE_SEM_TIMEDWAIT 0)
405       message(STATUS "timedwait not compilable")
406     else()
407       set(HAVE_SEM_TIMEDWAIT 1)
408       message(STATUS "timedwait is compilable")
409     endif()
410   endif()
411
412   ### HAVE_MUTEX_TIMEDLOCK
413
414   if(HAVE_MUTEX_TIMEDLOCK_LIB)
415
416     execute_process(
417       COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_mutex_timedlock.c -lpthread"
418       WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
419       OUTPUT_VARIABLE HAVE_MUTEX_TIMEDLOCK_run
420       )
421
422     if(HAVE_MUTEX_TIMEDLOCK_run)
423       set(HAVE_MUTEX_TIMEDLOCK 0)
424       message(STATUS "timedlock not compilable")
425     else()
426       message(STATUS "timedlock is compilable")
427       set(HAVE_MUTEX_TIMEDLOCK 1)
428     endif()
429   endif()
430 endif()
431
432 # AC_CHECK_MCSC(mcsc=yes, mcsc=no)
433 set(mcsc_flags "")
434 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
435   set(mcsc_flags -D_XOPEN_SOURCE)
436 endif()
437
438 if(WIN32)
439   if(ARCH_32_BITS)
440     set(mcsc_flags -D_XBT_WIN32 -D_I_X86_ -I${CMAKE_HOME_DIRECTORY}/src/include -I${CMAKE_HOME_DIRECTORY}/src/xbt)
441   else()
442     set(mcsc_flags -D_XBT_WIN32 -D_AMD64_ -I${CMAKE_HOME_DIRECTORY}/src/include -I${CMAKE_HOME_DIRECTORY}/src/xbt)
443   endif()
444 endif()
445
446 IF(CMAKE_CROSSCOMPILING)
447   IF(WIN32)
448     set(windows_context "yes")
449     set(IS_WINDOWS 1)
450   ENDIF()
451 ELSE()
452   file(REMOVE "${CMAKE_BINARY_DIR}/testprog*")
453   file(REMOVE ${CMAKE_BINARY_DIR}/conftestval)
454   set(MCSC_buildcmd ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_AC_CHECK_MCSC.c ${mcsc_flags} -o testprog)
455   execute_process(COMMAND ${MCSC_buildcmd}
456   WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/
457   OUTPUT_VARIABLE COMPILE_mcsc_VAR ERROR_VARIABLE COMPILE_mcsc_VAR)
458
459   if(NOT COMPILE_mcsc_VAR)
460     message(STATUS "prog_AC_CHECK_MCSC.c is compilable")
461     execute_process(COMMAND ./testprog
462     WORKING_DIRECTORY ${CMAKE_BINARY_DIR}/
463     OUTPUT_VARIABLE var_compil)
464   else()
465     message(STATUS "prog_AC_CHECK_MCSC.c is not compilable. \nBuild command: ${MCSC_buildcmd}\nOutput\n${COMPILE_mcsc_VAR}")
466   endif()
467   file(REMOVE "${CMAKE_BINARY_DIR}/testprog*")
468
469   if(EXISTS "${CMAKE_BINARY_DIR}/conftestval")
470     file(READ "${CMAKE_BINARY_DIR}/conftestval" mcsc)
471     STRING(REPLACE "\n" "" mcsc "${mcsc}")
472     if(mcsc)
473       set(mcsc "yes")
474       set(HAVE_UCONTEXT_H 1)
475     else()
476       set(mcsc "no")
477     endif()
478   else()
479     set(mcsc "no")
480   endif()
481
482   message(STATUS "mcsc: ${mcsc}")
483 ENDIF()
484
485 if(mcsc MATCHES "no" AND pthread)
486   if(HAVE_WINDOWS_H)
487     set(windows_context "yes")
488     set(IS_WINDOWS 1)
489   elseif(HAVE_WINDOWS_H)
490     message(FATAL_ERROR "no appropriate backend found")
491   endif()
492 endif()
493
494 #Only windows
495
496 if(WIN32)
497   if(NOT HAVE_WINDOWS_H)
498     message(FATAL_ERROR "no appropriate backend found windows")
499   endif()
500 endif()
501
502 if(windows_context MATCHES "yes")
503   message(STATUS "Context change to windows")
504 endif()
505
506 #If can have both context
507
508 if(mcsc)
509   set(CONTEXT_UCONTEXT 1)
510 endif()
511
512 if(pthread)
513   set(CONTEXT_THREADS 1)
514 endif()
515
516 ###############
517 ## GIT version check
518 ##
519 if(EXISTS ${CMAKE_HOME_DIRECTORY}/.git/)
520   execute_process(COMMAND git remote
521   COMMAND head -n 1
522   WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
523   OUTPUT_VARIABLE remote
524   RESULT_VARIABLE ret
525   )
526   string(REPLACE "\n" "" remote "${remote}")
527   #message(STATUS "Git remote: ${remote}")
528   execute_process(COMMAND git config --get remote.${remote}.url
529   WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
530   OUTPUT_VARIABLE url
531   RESULT_VARIABLE ret
532   )
533   string(REPLACE "\n" "" url "${url}")
534   #message(STATUS "Git url: ${url}")
535   if(url)
536     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log --pretty=oneline --abbrev-commit -1
537     WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
538     OUTPUT_VARIABLE GIT_VERSION
539     RESULT_VARIABLE ret
540     )
541     string(REPLACE "\n" "" GIT_VERSION "${GIT_VERSION}")
542     message(STATUS "Git version: ${GIT_VERSION}")
543     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log -n 1 --pretty=format:%ai .
544     WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
545     OUTPUT_VARIABLE GIT_DATE
546     RESULT_VARIABLE ret
547     )
548     string(REPLACE "\n" "" GIT_DATE "${GIT_DATE}")
549     message(STATUS "Git date: ${GIT_DATE}")
550     string(REGEX REPLACE " .*" "" GIT_VERSION "${GIT_VERSION}")
551     
552     execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log --pretty=format:%H -1
553                     WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
554                     OUTPUT_VARIABLE SIMGRID_GITHASH
555                     RESULT_VARIABLE ret
556                     )
557     string(REPLACE "\n" "" SIMGRID_GITHASH "${SIMGRID_GITHASH}")
558                     
559   endif()
560 elseif(EXISTS ${CMAKE_HOME_DIRECTORY}/.gitversion)
561   FILE(STRINGS ${CMAKE_HOME_DIRECTORY}/.gitversion GIT_VERSION)
562 endif()
563
564 if(release)
565   set(SIMGRID_VERSION_STRING "${SIMGRID_VERSION_STRING}\\nRelease build")
566 else()
567   set(SIMGRID_VERSION_STRING "${SIMGRID_VERSION_STRING}\\nDevelopment build")
568 endif()
569 if(GIT_VERSION)
570   set(SIMGRID_VERSION_STRING "${SIMGRID_VERSION_STRING} at commit ${GIT_VERSION}")
571 endif()
572 if(GIT_DATE)
573   set(SIMGRID_VERSION_STRING "${SIMGRID_VERSION_STRING} (${GIT_DATE})")
574 endif()
575 #--------------------------------------------------------------------------------------------------
576
577 set(makecontext_CPPFLAGS_2 "")
578 if(HAVE_MAKECONTEXT OR WIN32)
579   set(makecontext_CPPFLAGS "-DTEST_makecontext")
580   if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
581     set(makecontext_CPPFLAGS_2 "-D_XOPEN_SOURCE")
582   endif()
583
584   if(WIN32)
585     if(ARCH_32_BITS)
586       set(makecontext_CPPFLAGS "-DTEST_makecontext -D_I_X86_")
587     else()
588       set(makecontext_CPPFLAGS "-DTEST_makecontext -D_AMD64_")
589     endif()
590     set(makecontext_CPPFLAGS_2 "-D_XBT_WIN32 -I${CMAKE_HOME_DIRECTORY}/src/include -I${CMAKE_HOME_DIRECTORY}/src/xbt")
591   endif()
592
593   file(REMOVE ${CMAKE_BINARY_DIR}/conftestval)
594
595   try_run(RUN_makecontext_VAR COMPILE_makecontext_VAR
596     ${CMAKE_BINARY_DIR}
597     ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_stacksetup.c
598     COMPILE_DEFINITIONS "${makecontext_CPPFLAGS} ${makecontext_CPPFLAGS_2}"
599     )
600
601   if(EXISTS ${CMAKE_BINARY_DIR}/conftestval)
602     file(READ ${CMAKE_BINARY_DIR}/conftestval MAKECONTEXT_ADDR_SIZE)
603     string(REPLACE "\n" "" MAKECONTEXT_ADDR_SIZE "${MAKECONTEXT_ADDR_SIZE}")
604     string(REGEX MATCH ;^.*,;MAKECONTEXT_ADDR "${MAKECONTEXT_ADDR_SIZE}")
605     string(REGEX MATCH ;,.*$; MAKECONTEXT_SIZE "${MAKECONTEXT_ADDR_SIZE}")
606     string(REPLACE "," "" makecontext_addr "${MAKECONTEXT_ADDR}")
607     string(REPLACE "," "" makecontext_size "${MAKECONTEXT_SIZE}")
608     set(pth_skaddr_makecontext "#define pth_skaddr_makecontext(skaddr,sksize) (${makecontext_addr})")
609     set(pth_sksize_makecontext "#define pth_sksize_makecontext(skaddr,sksize) (${makecontext_size})")
610     message(STATUS "${pth_skaddr_makecontext}")
611     message(STATUS "${pth_sksize_makecontext}")
612   else()
613     # message(FATAL_ERROR "makecontext is not compilable")
614   endif()
615 endif()
616
617 #--------------------------------------------------------------------------------------------------
618
619 ### check for stackgrowth
620 if (NOT CMAKE_CROSSCOMPILING)
621   try_run(RUN_makecontext_VAR COMPILE_makecontext_VAR
622     ${CMAKE_BINARY_DIR}
623     ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_stackgrowth.c
624     )
625   file(READ "${CMAKE_BINARY_DIR}/conftestval" stack)
626   if(stack MATCHES "down")
627     set(PTH_STACKGROWTH "-1")
628   endif()
629   if(stack MATCHES "up")
630     set(PTH_STACKGROWTH "1")
631   endif()
632
633 endif()
634 ###############
635 ## System checks
636 ##
637
638 #SG_CONFIGURE_PART([System checks...])
639 #AC_PROG_CC(xlC gcc cc) -auto
640 #AM_SANITY_CHECK -auto
641
642 #AC_PROG_MAKE_SET
643
644 #AC_PRINTF_NULL FIXME: this is too ancient to survive!
645 try_run(RUN_PRINTF_NULL_VAR COMPILE_PRINTF_NULL_VAR
646   ${CMAKE_BINARY_DIR}
647   ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_printf_null.c
648   )
649
650 if(RUN_PRINTF_NULL_VAR MATCHES "FAILED_TO_RUN")
651   SET(PRINTF_NULL_WORKING "0")
652 else()
653   SET(PRINTF_NULL_WORKING "1")
654 endif()
655
656 #AC_CHECK_VA_COPY
657
658 set(diff_va "va_copy((d),(s))"
659   "VA_COPY((d),(s))"
660   "__va_copy((d),(s))"
661   "__builtin_va_copy((d),(s))"
662   "do { (d) = (s)\; } while (0)"
663   "do { *(d) = *(s)\; } while (0)"
664   "memcpy((void *)&(d), (void *)&(s), sizeof(s))"
665   "memcpy((void *)(d), (void *)(s), sizeof(*(s)))"
666   )
667
668 foreach(fct ${diff_va})
669   write_file("${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_va_copy.c" "#include <stdlib.h>
670 #include <stdarg.h>
671 #include <string.h>
672 #define DO_VA_COPY(d,s) ${fct}
673 void test(char *str, ...)
674 {
675   va_list ap, ap2;
676   int i;
677   va_start(ap, str);
678   DO_VA_COPY(ap2, ap);
679   for (i = 1; i <= 9; i++) {
680     int k = (int)va_arg(ap, int);
681     if (k != i)
682       abort();
683   }
684   DO_VA_COPY(ap, ap2);
685   for (i = 1; i <= 9; i++) {
686     int k = (int)va_arg(ap, int);
687     if (k != i)
688       abort();
689   }
690   va_end(ap);
691 }
692 int main(void)
693 {
694   test(\"test\", 1, 2, 3, 4, 5, 6, 7, 8, 9);
695   exit(0);
696 }"
697     )
698
699   execute_process(
700   COMMAND ${CMAKE_C_COMPILER} "${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_va_copy.c"
701   WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
702   RESULT_VARIABLE COMPILE_VA_NULL_VAR
703   OUTPUT_QUIET
704   ERROR_QUIET
705   )
706
707   if(NOT COMPILE_VA_NULL_VAR)
708     string(REGEX REPLACE "\;" "" fctbis ${fct})
709     if(${fctbis} STREQUAL "va_copy((d),(s))")
710       set(HAVE_VA_COPY 1)
711       set(ac_cv_va_copy "C99")
712       set(__VA_COPY_USE_C99 "va_copy((d),(s))")
713     endif()
714
715     if(${fctbis} STREQUAL "VA_COPY((d),(s))")
716       set(ac_cv_va_copy "GCM")
717       set(__VA_COPY_USE_GCM "VA_COPY((d),(s))")
718     endif()
719
720     if(${fctbis} STREQUAL "__va_copy((d),(s))")
721       set(ac_cv_va_copy "GCH")
722       set(__VA_COPY_USE_GCH "__va_copy((d),(s))")
723     endif()
724
725     if(${fctbis} STREQUAL "__builtin_va_copy((d),(s))")
726       set(ac_cv_va_copy "GCB")
727       set(__VA_COPY_USE_GCB "__builtin_va_copy((d),(s))")
728     endif()
729
730     if(${fctbis} STREQUAL "do { (d) = (s) } while (0)")
731       set(ac_cv_va_copy "ASS")
732       set(__VA_COPY_USE_ASS "do { (d) = (s); } while (0)")
733     endif()
734
735     if(${fctbis} STREQUAL "do { *(d) = *(s) } while (0)")
736       set(ac_cv_va_copy "ASP")
737       set(__VA_COPY_USE_ASP "do { *(d) = *(s); } while (0)")
738     endif()
739
740     if(${fctbis} STREQUAL "memcpy((void *)&(d), (void *)&(s), sizeof(s))")
741       set(ac_cv_va_copy "CPS")
742       set(__VA_COPY_USE_CPS "memcpy((void *)&(d), (void *)&(s), sizeof(s))")
743     endif()
744
745     if(${fctbis} STREQUAL "memcpy((void *)(d), (void *)(s), sizeof(*(s)))")
746       set(ac_cv_va_copy "CPP")
747       set(__VA_COPY_USE_CPP "memcpy((void *)(d), (void *)(s), sizeof(*(s)))")
748     endif()
749
750     if(NOT STATUS_OK)
751       set(__VA_COPY_USE "__VA_COPY_USE_${ac_cv_va_copy}(d, s)")
752     endif()
753     set(STATUS_OK "1")
754
755   endif()
756
757 endforeach(fct ${diff_va})
758
759 #--------------------------------------------------------------------------------------------------
760 ### check for a working snprintf
761 if(HAVE_SNPRINTF AND HAVE_VSNPRINTF OR WIN32)
762   if(WIN32)
763     #set(HAVE_SNPRINTF 1)
764     #set(HAVE_VSNPRINTF 1)
765   endif()
766
767   if(CMAKE_CROSSCOMPILING)
768     set(RUN_SNPRINTF_FUNC "cross")
769     #set(PREFER_PORTABLE_SNPRINTF 1)
770   else()
771     try_run(RUN_SNPRINTF_FUNC_VAR COMPILE_SNPRINTF_FUNC_VAR
772       ${CMAKE_BINARY_DIR}
773       ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_snprintf.c
774       )
775   endif()
776
777   if(CMAKE_CROSSCOMPILING)
778     set(RUN_VSNPRINTF_FUNC "cross")
779     set(PREFER_PORTABLE_VSNPRINTF 1)
780   else()
781     try_run(RUN_VSNPRINTF_FUNC_VAR COMPILE_VSNPRINTF_FUNC_VAR
782       ${CMAKE_BINARY_DIR}
783       ${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/test_prog/prog_vsnprintf.c
784       )
785   endif()
786
787   set(PREFER_PORTABLE_SNPRINTF 0)
788   if(RUN_VSNPRINTF_FUNC_VAR MATCHES "FAILED_TO_RUN")
789     set(PREFER_PORTABLE_SNPRINTF 1)
790   endif()
791   if(RUN_SNPRINTF_FUNC_VAR MATCHES "FAILED_TO_RUN")
792     set(PREFER_PORTABLE_SNPRINTF 1)
793   endif()
794 endif()
795
796 ### check for asprintf function familly
797 if(HAVE_ASPRINTF)
798   SET(simgrid_need_asprintf "")
799   SET(NEED_ASPRINTF 0)
800 else()
801   SET(simgrid_need_asprintf "#define SIMGRID_NEED_ASPRINTF 1")
802   SET(NEED_ASPRINTF 1)
803 endif()
804
805 if(HAVE_VASPRINTF)
806   SET(simgrid_need_vasprintf "")
807   SET(NEED_VASPRINTF 0)
808 else()
809   SET(simgrid_need_vasprintf "#define SIMGRID_NEED_VASPRINTF 1")
810   SET(NEED_VASPRINTF 1)
811 endif()
812
813 ### check for addr2line
814
815 find_path(ADDR2LINE NAMES addr2line     PATHS NO_DEFAULT_PATHS  )
816 if(ADDR2LINE)
817   set(ADDR2LINE "${ADDR2LINE}/addr2line")
818 endif()
819
820 ### Check if OSX can compile with ucontext (with gcc 4.[1-5] it is broken)
821 if(APPLE)
822   if(APPLE_NEED_GCC_VERSION GREATER COMPILER_C_VERSION_MAJOR_MINOR)
823     message(STATUS "Ucontext can't be used with this version of gcc (must be greater than 4.5)")
824     set(HAVE_UCONTEXT_H 0)
825   endif()
826 endif()
827
828 ### File to create
829
830 configure_file("${CMAKE_HOME_DIRECTORY}/src/context_sysv_config.h.in"
831   "${CMAKE_BINARY_DIR}/src/context_sysv_config.h" @ONLY IMMEDIATE)
832
833 SET( CMAKEDEFINE "#cmakedefine" )
834 configure_file("${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/src/internal_config.h.in" "${CMAKE_BINARY_DIR}/src/internal_config.h" @ONLY IMMEDIATE)
835 configure_file("${CMAKE_BINARY_DIR}/src/internal_config.h" "${CMAKE_BINARY_DIR}/src/internal_config.h" @ONLY IMMEDIATE)
836 configure_file("${CMAKE_HOME_DIRECTORY}/include/simgrid_config.h.in" "${CMAKE_BINARY_DIR}/include/simgrid_config.h" @ONLY IMMEDIATE)
837
838 set(top_srcdir "${CMAKE_HOME_DIRECTORY}")
839 set(srcdir "${CMAKE_HOME_DIRECTORY}/src")
840 set(bindir "${CMAKE_BINARY_DIR}")
841
842 ### Script used when simgrid is installed
843 set(exec_prefix ${CMAKE_INSTALL_PREFIX})
844 set(includeflag "-I${CMAKE_INSTALL_PREFIX}/include -I${CMAKE_INSTALL_PREFIX}/include/smpi")
845 set(includedir "${CMAKE_INSTALL_PREFIX}/include")
846 set(libdir ${exec_prefix}/lib)
847 set(CMAKE_SMPI_COMMAND "export LD_LIBRARY_PATH=\"${CMAKE_INSTALL_PREFIX}/lib")
848 if(GTNETS_LIB_PATH)
849   set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${GTNETS_LIB_PATH}")
850 endif()
851 if(HAVE_NS3_LIB)
852   set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${HAVE_NS3_LIB}")
853 endif()
854 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:\${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\"")
855
856 file(READ ${CMAKE_HOME_DIRECTORY}/src/smpi/smpitools.sh SMPITOOLS_SH)
857 configure_file(${CMAKE_HOME_DIRECTORY}/include/smpi/mpif.h.in ${CMAKE_BINARY_DIR}/include/smpi/mpif.h @ONLY)
858 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicc.in ${CMAKE_BINARY_DIR}/bin/smpicc @ONLY)
859 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicxx.in ${CMAKE_BINARY_DIR}/bin/smpicxx @ONLY)
860 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpiff.in ${CMAKE_BINARY_DIR}/bin/smpiff @ONLY)
861 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpif90.in ${CMAKE_BINARY_DIR}/bin/smpif90 @ONLY)
862 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpirun.in ${CMAKE_BINARY_DIR}/bin/smpirun @ONLY)
863
864 ### Script used when simgrid is compiling
865 set(includeflag "-I${CMAKE_HOME_DIRECTORY}/include -I${CMAKE_HOME_DIRECTORY}/include/smpi")
866 set(includeflag "${includeflag} -I${CMAKE_BINARY_DIR}/include -I${CMAKE_BINARY_DIR}/include/smpi")
867 set(includedir "${CMAKE_HOME_DIRECTORY}/include")
868 set(exec_prefix "${CMAKE_BINARY_DIR}/smpi_script/")
869 set(CMAKE_SMPI_COMMAND "export LD_LIBRARY_PATH=\"${CMAKE_BINARY_DIR}/lib")
870 if(GTNETS_LIB_PATH)
871   set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${GTNETS_LIB_PATH}")
872 endif()
873 if(HAVE_NS3_LIB)
874   set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${HAVE_NS3_LIB}")
875 endif()
876 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:\${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\"")
877 set(libdir "${CMAKE_BINARY_DIR}/lib")
878
879 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicc.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc @ONLY)
880 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicxx.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicxx @ONLY)
881 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpiff.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff @ONLY)
882 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpif90.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90 @ONLY)
883 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpirun.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun @ONLY)
884
885 set(top_builddir ${CMAKE_HOME_DIRECTORY})
886
887 if(NOT WIN32)
888   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpicc)
889   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpicxx)
890   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpiff)
891   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpif90)
892   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpirun)
893   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc)
894   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicxx)
895   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff)
896   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90)
897   execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun)
898 endif()
899
900 set(generated_headers_to_install
901   ${CMAKE_CURRENT_BINARY_DIR}/include/smpi/mpif.h
902   ${CMAKE_CURRENT_BINARY_DIR}/include/simgrid_config.h
903   )
904
905 set(generated_headers
906   ${CMAKE_CURRENT_BINARY_DIR}/src/context_sysv_config.h
907   ${CMAKE_CURRENT_BINARY_DIR}/src/internal_config.h
908   )
909
910 set(generated_files_to_clean
911   ${generated_headers}
912   ${generated_headers_to_install}
913   ${CMAKE_BINARY_DIR}/bin/smpicc
914   ${CMAKE_BINARY_DIR}/bin/smpicxx
915   ${CMAKE_BINARY_DIR}/bin/smpiff
916   ${CMAKE_BINARY_DIR}/bin/smpif90
917   ${CMAKE_BINARY_DIR}/bin/smpirun
918   ${CMAKE_BINARY_DIR}/bin/colorize
919   ${CMAKE_BINARY_DIR}/bin/simgrid_update_xml
920   ${CMAKE_BINARY_DIR}/examples/smpi/tracing/smpi_traced.trace
921   )
922
923 if(NOT "${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_HOME_DIRECTORY}")
924   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions0.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions0.txt COPYONLY)
925   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions1.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions1.txt COPYONLY)
926   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_allReduce.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allReduce.txt COPYONLY)
927   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_barrier.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_barrier.txt COPYONLY)
928   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_bcast.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_bcast.txt COPYONLY)
929   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_with_isend.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_with_isend.txt COPYONLY)
930   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_alltoall.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoall.txt COPYONLY)
931   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_alltoallv.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoallv.txt COPYONLY)
932   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_waitall.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_waitall.txt COPYONLY)
933   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_reducescatter.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_reducescatter.txt COPYONLY)
934   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_gather.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_gather.txt COPYONLY)
935   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_allgatherv.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allgatherv.txt COPYONLY)
936   configure_file(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/hostfile ${CMAKE_BINARY_DIR}/teshsuite/smpi/hostfile COPYONLY)
937   
938   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/description_file ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/description_file COPYONLY)
939   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/README ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/README COPYONLY)
940   configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/smpi_replay.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/smpi_replay.txt COPYONLY)
941   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)
942   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)
943   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)
944   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)
945   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)
946   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)
947   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)
948   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)
949   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)
950   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)
951   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)
952   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)
953   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)
954   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)
955   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)
956   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)
957   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)
958   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)
959   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)
960   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)
961   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)
962   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)
963   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)
964   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)
965   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)
966   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)
967   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)
968   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)
969   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)
970   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)
971   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)
972   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)
973
974   set(generated_files_to_clean
975     ${generated_files_to_clean}
976     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions0.txt
977     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions1.txt
978     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allReduce.txt
979     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_barrier.txt
980     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_bcast.txt
981     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_with_isend.txt
982     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoall.txt
983     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoallv.txt
984     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_waitall.txt
985     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_gather.txt
986     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allgatherv.txt
987     ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_reducescatter.txt
988     ${CMAKE_BINARY_DIR}/teshsuite/smpi/hostfile
989     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/description_file
990     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/README
991     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/smpi_replay.txt
992     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace0.txt
993     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace1.txt
994     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace2.txt
995     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace3.txt
996     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace4.txt
997     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace5.txt
998     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace6.txt
999     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace7.txt
1000     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace8.txt
1001     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace9.txt
1002     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace10.txt
1003     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace11.txt
1004     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace12.txt
1005     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace13.txt
1006     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace14.txt
1007     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace15.txt
1008     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace16.txt
1009     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace17.txt
1010     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace18.txt
1011     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace19.txt
1012     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace20.txt
1013     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace21.txt
1014     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace22.txt
1015     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace23.txt
1016     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace24.txt
1017     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace25.txt
1018     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace26.txt
1019     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace27.txt
1020     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace28.txt
1021     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace29.txt
1022     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace30.txt
1023     ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace31.txt
1024     )
1025 endif()
1026
1027 SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES
1028   "${generated_files_to_clean}")
1029
1030 IF(${ARCH_32_BITS})
1031   set(WIN_ARCH "32")
1032 ELSE()
1033   set(WIN_ARCH "64")
1034 ENDIF()
1035 configure_file("${CMAKE_HOME_DIRECTORY}/buildtools/Cmake/src/simgrid.nsi.in" "${CMAKE_BINARY_DIR}/simgrid.nsi" @ONLY IMMEDIATE)