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)
7 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
8 # Check for the compiler #
9 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
11 ### Need to set rc ccompiler before enable language
13 SET(CMAKE_RC_COMPILER "windres")
17 ## Check the C/C++ standard that we need
18 ## See also tools/cmake/GCCFlags.cmake that sets our paranoid warning flags
20 message("-- You are compiling SimGrid with MicroSoft Visual C. Good luck.")
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")
25 INCLUDE(CheckCCompilerFlag)
26 CHECK_C_COMPILER_FLAG(-fstack-cleaner HAVE_C_STACK_CLEANER)
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")
33 if (CMAKE_COMPILER_IS_GNUCC)
34 if (CMAKE_CXX_COMPILER_VERSION VERSION_LESS "4.7")
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.")
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")
48 "The compiler ${CMAKE_CXX_COMPILER} (v${CMAKE_CXX_COMPILER_VERSION}) has no C++11 support. "
49 "Please use a decent C++ compiler.")
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")
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).")
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)
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)
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)
91 CMAKE_FORCE_Fortran_COMPILER(smpiff smpiff)
92 enable_language(Fortran OPTIONAL)
95 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
96 # Build the version number #
97 #-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
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)
104 set(SIMGRID_VERSION_DATE "2016") # Year for copyright information
106 if(${SIMGRID_VERSION_PATCH} EQUAL "0")
107 set(release_version "${SIMGRID_VERSION_MAJOR}.${SIMGRID_VERSION_MINOR}")
109 set(release_version "${SIMGRID_VERSION_MAJOR}.${SIMGRID_VERSION_MINOR}.${SIMGRID_VERSION_PATCH}")
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.")
115 set(SIMGRID_VERSION_BANNER "${SIMGRID_VERSION_BANNER}\\nRelease build")
117 set(SIMGRID_VERSION_BANNER "${SIMGRID_VERSION_BANNER}\\nDevelopment build")
120 set(libsimgrid_version "${release_version}")
121 set(libsimgrid-java_version "${release_version}")
123 ### SET THE LIBRARY EXTENSION
135 exec_program("${CMAKE_LINKER} --version" OUTPUT_VARIABLE "LINKER_VERSION")
136 string(REGEX MATCH "[0-9].[0-9]*" LINKER_VERSION "${LINKER_VERSION}")
138 ### Find programs and paths
139 FIND_PROGRAM(GCOV_PATH gcov)
142 message(FATAL_ERROR "Please install Perl to compile SimGrid.")
146 set(CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/lib")
147 set(CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE)
149 SET(LIBRARY_OUTPUT_PATH ${CMAKE_BINARY_DIR}/lib)
151 ### Compute the include paths
153 ${CMAKE_HOME_DIRECTORY}
154 ${CMAKE_HOME_DIRECTORY}/include
155 ${CMAKE_HOME_DIRECTORY}/src/include
157 ${CMAKE_BINARY_DIR}/include
160 if(NOT CMAKE_CROSSCOMPILING AND EXISTS /usr/include/)
161 set(INCLUDES ${INCLUDES} /usr/include/)
164 ### Check 32bits or 64bits
165 IF(CMAKE_SIZEOF_VOID_P EQUAL 4)
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)
183 message(STATUS "C_COMPILER ${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_VERSION}")
184 message(STATUS "CXX_COMPILER ${CMAKE_CXX_COMPILER} ${CMAKE_CXX_COMPILER_VERSION}")
185 message(STATUS "CMAKE_RC_COMPILER ${CMAKE_RC_COMPILER}")
186 message(STATUS "LIB ${CMAKE_LIB_WIN}")
187 message(STATUS "MAKE_PROGRAM ${CMAKE_MAKE_PROGRAM}")
188 message(STATUS "CMAKE_BUILD_TOOL ${CMAKE_BUILD_TOOL}")
189 message(STATUS "LINKER ${CMAKE_LINKER}")
190 message(STATUS "CMAKE_GENERATOR ${CMAKE_GENERATOR}")
191 message(STATUS "GNUC ${CMAKE_COMPILER_IS_GNUCC}")
195 include_directories(${INCLUDES})
198 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Option.cmake)
200 ### Determine the assembly flavor that we need today
201 include(CMakeDetermineSystem)
202 IF(CMAKE_SYSTEM_PROCESSOR MATCHES ".86|AMD64|amd64")
204 message(STATUS "System processor: i686 (${CMAKE_SYSTEM_PROCESSOR}, 32 bits)")
205 set(PROCESSOR_i686 1)
207 message(STATUS "System processor: x86_64 (${CMAKE_SYSTEM_PROCESSOR}, 64 bits)")
208 set(PROCESSOR_x86_64 1)
211 message(STATUS "Disable fast raw contextes on Microsoft Visual.")
213 set(HAVE_RAW_CONTEXTS 1)
218 include(CheckFunctionExists)
219 include(CheckTypeSize)
220 include(CheckIncludeFile)
221 include(CheckIncludeFiles)
222 include(CheckLibraryExists)
223 include(CheckSymbolExists)
226 include(FindGraphviz)
227 include(FindLibSigc++)
231 include(FindLuaSimgrid)
238 message(FATAL_ERROR "Cannot find NS3. Please install it (apt-get install ns3 libns3-dev) or disable that cmake option")
242 find_package(Boost 1.48)
244 include_directories(${Boost_INCLUDE_DIRS})
247 message(FATAL_ERROR "Failed to find Boost libraries (Try to install them with 'sudo fink install boost1.53.nopython')")
249 message(FATAL_ERROR "Failed to find Boost libraries."
250 "Did you install libboost-dev and libboost-context-dev?"
251 "(libboost-context-dev is optional)")
255 # Try again to see if we have libboost-context
256 find_package(Boost 1.42 COMPONENTS context)
257 set(Boost_FOUND 1) # We don't care of whether this component is missing
259 if(Boost_FOUND AND Boost_CONTEXT_FOUND)
260 # We should use feature detection for this instead:
261 if (Boost_VERSION LESS 105600)
262 message("Found Boost.Context API v1")
263 set(HAVE_BOOST_CONTEXTS 1)
265 message("Found Boost.Context API v2")
266 set(HAVE_BOOST_CONTEXTS 2)
269 message (" boost : found.")
270 message (" boost-context: missing. Install libboost-context-dev for this optional feature.")
271 set(HAVE_BOOST_CONTEXTS 0)
274 # Checks for header libraries functions.
275 CHECK_LIBRARY_EXISTS(execinfo backtrace "" HAVE_BACKTRACE_IN_LIBEXECINFO)
276 CHECK_LIBRARY_EXISTS(rt clock_gettime "" HAVE_POSIX_GETTIME)
278 CHECK_LIBRARY_EXISTS(pthread pthread_create "" HAVE_PTHREAD)
279 CHECK_LIBRARY_EXISTS(pthread sem_init "" HAVE_SEM_INIT_LIB)
280 CHECK_LIBRARY_EXISTS(pthread sem_open "" HAVE_SEM_OPEN_LIB)
281 CHECK_LIBRARY_EXISTS(pthread sem_timedwait "" HAVE_SEM_TIMEDWAIT_LIB)
282 CHECK_LIBRARY_EXISTS(pthread pthread_mutex_timedlock "" HAVE_MUTEX_TIMEDLOCK_LIB)
285 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
286 set(CMAKE_REQUIRED_DEFINITIONS "-D_XOPEN_SOURCE=700 -D_DARWIN_C_SOURCE")
288 #Â Use the GNU version of unusual modifiers like PRIx64
289 add_definitions(-D__USE_MINGW_ANSI_STDIO=1)
290 set(CMAKE_REQUIRED_DEFINITIONS "-D__USE_MINGW_ANSI_STDIO=1")
292 set(CMAKE_REQUIRED_DEFINITIONS "-D_GNU_SOURCE")
295 CHECK_INCLUDE_FILES("stdlib.h;stdarg.h;string.h;float.h" STDC_HEADERS)
296 CHECK_INCLUDE_FILE("valgrind/valgrind.h" HAVE_VALGRIND_VALGRIND_H)
297 CHECK_INCLUDE_FILE("sys/stat.h" HAVE_SYS_STAT_H)
298 CHECK_INCLUDE_FILE("sys/ptrace.h" HAVE_SYS_PTRACE_H)
299 CHECK_INCLUDE_FILE("windows.h" HAVE_WINDOWS_H)
300 CHECK_INCLUDE_FILE("errno.h" HAVE_ERRNO_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/time.h" HAVE_SYS_TIME_H)
305 CHECK_INCLUDE_FILE("sys/param.h" HAVE_SYS_PARAM_H)
306 CHECK_INCLUDE_FILE("sys/sysctl.h" HAVE_SYS_SYSCTL_H)
307 CHECK_INCLUDE_FILE("time.h" HAVE_TIME_H)
308 CHECK_INCLUDE_FILE("ucontext.h" HAVE_UCONTEXT_H)
309 CHECK_INCLUDE_FILE("linux/futex.h" HAVE_FUTEX_H)
311 CHECK_FUNCTION_EXISTS(gettimeofday HAVE_GETTIMEOFDAY)
312 CHECK_FUNCTION_EXISTS(nanosleep HAVE_NANOSLEEP)
313 CHECK_FUNCTION_EXISTS(getdtablesize HAVE_GETDTABLESIZE)
314 CHECK_FUNCTION_EXISTS(sysconf HAVE_SYSCONF)
315 CHECK_FUNCTION_EXISTS(popen HAVE_POPEN)
317 CHECK_SYMBOL_EXISTS(vasprintf stdio.h HAVE_VASPRINTF)
319 # The detection of vasprintf fails on MinGW, assumingly because it's
320 # defined as an inline function in stdio.h instead of a regular
321 # function. So force the result to be 1 despite of the test.
322 set(HAVE_VASPRINTF 1)
325 CHECK_FUNCTION_EXISTS(makecontext HAVE_MAKECONTEXT)
326 CHECK_FUNCTION_EXISTS(process_vm_readv HAVE_PROCESS_VM_READV)
328 CHECK_FUNCTION_EXISTS(mmap HAVE_MMAP)
330 #Check if __thread is defined
332 COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_thread_storage.c"
333 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
334 RESULT_VARIABLE HAVE_thread_storage_run
337 if(HAVE_thread_storage_run)
338 set(HAVE_THREAD_LOCAL_STORAGE 1)
340 set(HAVE_THREAD_LOCAL_STORAGE 0)
343 # Our usage of mmap is Linux-specific (flag MAP_ANONYMOUS), but kFreeBSD uses a GNU libc
345 NOT "${CMAKE_SYSTEM}" MATCHES "Linux" AND
346 NOT "${CMAKE_SYSTEM}" MATCHES "kFreeBSD" AND
347 NOT "${CMAKE_SYSTEM}" MATCHES "GNU" AND
348 NOT "${CMAKE_SYSTEM}" MATCHES "Darwin")
350 message(STATUS "Warning: MMAP is thought as non functional on this architecture (${CMAKE_SYSTEM})")
353 if(HAVE_MMAP AND HAVE_THREAD_LOCAL_STORAGE)
359 set(HAVE_UCONTEXT_CONTEXTS 0)
360 set(HAVE_THREAD_CONTEXTS 0)
366 if(enable_mallocators)
367 SET(MALLOCATOR_IS_WANTED 1)
369 SET(MALLOCATOR_IS_WANTED 0)
372 if(enable_model-checking AND HAVE_MMALLOC)
374 SET(MMALLOC_WANT_OVERRIDE_LEGACY 1)
375 include(FindLibunwind)
378 if(enable_model-checking)
379 message(STATUS "Warning: support for model-checking has been disabled because HAVE_MMALLOC is false")
383 SET(MMALLOC_WANT_OVERRIDE_LEGACY 0)
387 include(FindGFortran)
389 if("${CMAKE_SYSTEM}" MATCHES "Linux")
391 SET(HAVE_PRIVATIZATION 1)
392 elseif("${CMAKE_SYSTEM}" MATCHES "^FreeBSD")
394 SET(HAVE_PRIVATIZATION 0)
396 message (STATUS "Warning: no support for SMPI automatic privatization on this platform")
397 SET(HAVE_PRIVATIZATION 0)
401 #--------------------------------------------------------------------------------------------------
402 ### Check for GNU dynamic linker
403 CHECK_INCLUDE_FILE("dlfcn.h" HAVE_DLFCN_H)
405 execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_gnu_dynlinker.c -ldl -o test_gnu_ld
406 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
407 OUTPUT_VARIABLE HAVE_GNU_LD_compil
409 if(HAVE_GNU_LD_compil)
411 message(STATUS "Warning: test program toward GNU ld failed to compile:")
412 message(STATUS "${HAVE_GNU_LD_comp_output}")
415 execute_process(COMMAND ./test_gnu_ld
416 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
417 RESULT_VARIABLE HAVE_GNU_LD_run
418 OUTPUT_VARIABLE var_exec
421 if(NOT HAVE_GNU_LD_run)
423 message(STATUS "We are using GNU dynamic linker")
426 message(STATUS "Warning: error while checking for GNU ld:")
427 message(STATUS "Test output: '${var_exec}'")
428 message(STATUS "Exit status: ${HAVE_GNU_LD_run}")
430 file(REMOVE test_gnu_ld)
435 #--------------------------------------------------------------------------------------------------
436 ### Initialize of CONTEXT THREADS
439 ### Test that we have a way to create semaphores
441 if(HAVE_SEM_OPEN_LIB)
442 execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_open.c -lpthread -o sem_open
443 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
444 OUTPUT_VARIABLE HAVE_SEM_OPEN_compil
447 # Test sem_open by compiling:
448 if(HAVE_SEM_OPEN_compil)
450 message(STATUS "Warning: sem_open not compilable")
451 message(STATUS "HAVE_SEM_OPEN_comp_output: ${HAVE_SEM_OPEN_comp_output}")
454 message(STATUS "sem_open is compilable")
457 # If we're not crosscompiling, we check by executing the program:
458 if (HAVE_SEM_OPEN AND NOT CMAKE_CROSSCOMPILING)
459 execute_process(COMMAND ./sem_open
460 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
461 RESULT_VARIABLE HAVE_SEM_OPEN_run
462 OUTPUT_VARIABLE var_compil
464 if (NOT HAVE_SEM_OPEN_run)
466 message(STATUS "sem_open is executable")
469 if(EXISTS "${CMAKE_BINARY_DIR}/sem_open")
470 message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_open exists!")
472 message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_open not exists!")
474 message(STATUS "Warning: sem_open not executable")
475 message(STATUS "Compilation output: '${var_compil}'")
476 message(STATUS "Exit result of sem_open: ${HAVE_SEM_OPEN_run}")
479 file(REMOVE sem_open)
485 if(HAVE_SEM_INIT_LIB)
486 execute_process(COMMAND ${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_init.c -lpthread -o sem_init
487 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
488 RESULT_VARIABLE HAVE_SEM_INIT_run OUTPUT_VARIABLE HAVE_SEM_INIT_compil)
490 # Test sem_init by compiling:
491 if(HAVE_SEM_INIT_compil)
493 message(STATUS "Warning: sem_init not compilable")
494 message(STATUS "HAVE_SEM_INIT_comp_output: ${HAVE_SEM_OPEN_comp_output}")
497 message(STATUS "sem_init is compilable")
500 # If we're not crosscompiling, we check by executing the program:
501 if (HAVE_SEM_INIT AND NOT CMAKE_CROSSCOMPILING)
502 execute_process(COMMAND ./sem_init
503 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
504 RESULT_VARIABLE HAVE_SEM_INIT_run
505 OUTPUT_VARIABLE var_compil
507 if (NOT HAVE_SEM_INIT_run)
509 message(STATUS "sem_init is executable")
512 if(EXISTS "${CMAKE_BINARY_DIR}/sem_init")
513 message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_init exists!")
515 message(STATUS "Bin ${CMAKE_BINARY_DIR}/sem_init not exists!")
517 message(STATUS "Warning: sem_init not executable")
518 message(STATUS "Compilation output: '${var_compil}'")
519 message(STATUS "Exit result of sem_init: ${HAVE_SEM_INIT_run}")
522 file(REMOVE sem_init)
525 if(NOT HAVE_SEM_OPEN AND NOT HAVE_SEM_INIT)
526 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).")
529 ### Test that we have a way to timewait for semaphores
531 if(HAVE_SEM_TIMEDWAIT_LIB)
534 COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_sem_timedwait.c -lpthread"
535 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
536 OUTPUT_VARIABLE HAVE_SEM_TIMEDWAIT_run
539 if(HAVE_SEM_TIMEDWAIT_run)
540 set(HAVE_SEM_TIMEDWAIT 0)
541 message(STATUS "timedwait not compilable")
543 set(HAVE_SEM_TIMEDWAIT 1)
544 message(STATUS "timedwait is compilable")
548 ### HAVE_MUTEX_TIMEDLOCK
550 if(HAVE_MUTEX_TIMEDLOCK_LIB)
553 COMMAND "${CMAKE_C_COMPILER} ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_mutex_timedlock.c -lpthread"
554 WORKING_DIRECTORY ${CMAKE_BINARY_DIR}
555 OUTPUT_VARIABLE HAVE_MUTEX_TIMEDLOCK_run
558 if(HAVE_MUTEX_TIMEDLOCK_run)
559 set(HAVE_MUTEX_TIMEDLOCK 0)
560 message(STATUS "timedlock not compilable")
562 message(STATUS "timedlock is compilable")
563 set(HAVE_MUTEX_TIMEDLOCK 1)
568 # This is needed for ucontext on MacOS X:
569 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
570 add_definitions(-D_XOPEN_SOURCE=700 -D_DARWIN_C_SOURCE)
574 # We always provide our own implementation of ucontext on Windows.
575 try_compile(HAVE_UCONTEXT
577 ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_AC_CHECK_MCSC.c
578 COMPILE_DEFINITIONS -D_XBT_WIN32 -I${CMAKE_HOME_DIRECTORY}/src/include -I${CMAKE_HOME_DIRECTORY}/src/xbt
581 # We always provide our own implementation of ucontext on Windows.
582 try_compile(HAVE_UCONTEXT
584 ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_AC_CHECK_MCSC.c)
587 #If can have both context
590 set(HAVE_UCONTEXT_CONTEXTS 1)
591 message("-- Support for ucontext factory")
595 set(HAVE_THREAD_CONTEXTS 1)
596 message("-- Support for thread context factory")
602 if(EXISTS ${CMAKE_HOME_DIRECTORY}/.git/)
603 execute_process(COMMAND git remote
605 WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
606 OUTPUT_VARIABLE remote
609 string(REPLACE "\n" "" remote "${remote}")
610 #message(STATUS "Git remote: ${remote}")
611 execute_process(COMMAND git config --get remote.${remote}.url
612 WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
616 string(REPLACE "\n" "" url "${url}")
617 #message(STATUS "Git url: ${url}")
619 execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log --pretty=oneline --abbrev-commit -1
620 WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
621 OUTPUT_VARIABLE GIT_VERSION
624 string(REPLACE "\n" "" GIT_VERSION "${GIT_VERSION}")
625 message(STATUS "Git version: ${GIT_VERSION}")
626 execute_process(COMMAND git --git-dir=${CMAKE_HOME_DIRECTORY}/.git log -n 1 --pretty=format:%ai .
627 WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/.git/
628 OUTPUT_VARIABLE GIT_DATE
631 string(REPLACE "\n" "" GIT_DATE "${GIT_DATE}")
632 message(STATUS "Git date: ${GIT_DATE}")
633 string(REGEX REPLACE " .*" "" GIT_VERSION "${GIT_VERSION}")
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
640 string(REPLACE "\n" "" SIMGRID_GITHASH "${SIMGRID_GITHASH}")
643 elseif(EXISTS ${CMAKE_HOME_DIRECTORY}/.gitversion)
644 FILE(STRINGS ${CMAKE_HOME_DIRECTORY}/.gitversion GIT_VERSION)
648 set(SIMGRID_VERSION_BANNER "${SIMGRID_VERSION_BANNER} at commit ${GIT_VERSION}")
651 set(SIMGRID_VERSION_BANNER "${SIMGRID_VERSION_BANNER} (${GIT_DATE})")
653 #--------------------------------------------------------------------------------------------------
655 set(makecontext_CPPFLAGS_2 "")
656 if(HAVE_MAKECONTEXT OR WIN32)
657 set(makecontext_CPPFLAGS "-DTEST_makecontext")
658 if(CMAKE_SYSTEM_NAME MATCHES "Darwin")
659 set(makecontext_CPPFLAGS_2 "-D_XOPEN_SOURCE=700")
664 set(makecontext_CPPFLAGS "-DTEST_makecontext -D_I_X86_")
666 set(makecontext_CPPFLAGS "-DTEST_makecontext -D_AMD64_")
668 set(makecontext_CPPFLAGS_2 "-D_XBT_WIN32 -I${CMAKE_HOME_DIRECTORY}/src/include -I${CMAKE_HOME_DIRECTORY}/src/xbt")
671 file(REMOVE ${CMAKE_BINARY_DIR}/conftestval)
673 if(CMAKE_CROSSCOMPILING)
674 set(RUN_makecontext_VAR "cross")
675 set(COMPILE_makecontext_VAR "cross")
677 try_run(RUN_makecontext_VAR COMPILE_makecontext_VAR
679 ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_stacksetup.c
680 COMPILE_DEFINITIONS "${makecontext_CPPFLAGS} ${makecontext_CPPFLAGS_2}"
684 if(EXISTS ${CMAKE_BINARY_DIR}/conftestval)
685 file(READ ${CMAKE_BINARY_DIR}/conftestval MAKECONTEXT_ADDR_SIZE)
686 string(REPLACE "\n" "" MAKECONTEXT_ADDR_SIZE "${MAKECONTEXT_ADDR_SIZE}")
687 string(REGEX MATCH ;^.*,;MAKECONTEXT_ADDR "${MAKECONTEXT_ADDR_SIZE}")
688 string(REGEX MATCH ;,.*$; MAKECONTEXT_SIZE "${MAKECONTEXT_ADDR_SIZE}")
689 string(REPLACE "," "" makecontext_addr "${MAKECONTEXT_ADDR}")
690 string(REPLACE "," "" makecontext_size "${MAKECONTEXT_SIZE}")
691 set(pth_skaddr_makecontext "#define pth_skaddr_makecontext(skaddr,sksize) (${makecontext_addr})")
692 set(pth_sksize_makecontext "#define pth_sksize_makecontext(skaddr,sksize) (${makecontext_size})")
694 # message(FATAL_ERROR "makecontext is not compilable")
698 #--------------------------------------------------------------------------------------------------
700 ### check for stackgrowth
701 if (NOT CMAKE_CROSSCOMPILING)
702 try_run(RUN_stackgrowth_VAR COMPILE_stackgrowth_VAR
704 ${CMAKE_HOME_DIRECTORY}/tools/cmake/test_prog/prog_stackgrowth.c
705 RUN_OUTPUT_VARIABLE stack
706 COPY_FILE test_stackgrowth
709 if("${stack}" STREQUAL "down")
710 set(PTH_STACKGROWTH "-1")
711 elseif("${stack}" STREQUAL "up")
712 set(PTH_STACKGROWTH "1")
714 if("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "x86_64")
715 set(PTH_STACKGROWTH "-1")
716 elseif("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "i686")
717 set(PTH_STACKGROWTH "-1")
719 message(FATAL_ERROR "Could not figure out the stack direction. Test prog returned: ${stack}; CMAKE_SYSTEM_PROCESSOR: ${CMAKE_SYSTEM_PROCESSOR}.")
722 # If the test ran well, remove the test binary
723 execute_process(COMMAND ${CMAKE_COMMAND} -E remove test_stackgrowth)
729 ### check for addr2line
730 find_path(ADDR2LINE NAMES addr2line PATHS NO_DEFAULT_PATHS )
732 set(ADDR2LINE "${ADDR2LINE}/addr2line")
737 configure_file("${CMAKE_HOME_DIRECTORY}/src/context_sysv_config.h.in"
738 "${CMAKE_BINARY_DIR}/src/context_sysv_config.h" @ONLY IMMEDIATE)
740 SET( CMAKEDEFINE "#cmakedefine" )
741 configure_file("${CMAKE_HOME_DIRECTORY}/tools/cmake/src/internal_config.h.in" "${CMAKE_BINARY_DIR}/src/internal_config.h" @ONLY IMMEDIATE)
742 configure_file("${CMAKE_BINARY_DIR}/src/internal_config.h" "${CMAKE_BINARY_DIR}/src/internal_config.h" @ONLY IMMEDIATE)
743 configure_file("${CMAKE_HOME_DIRECTORY}/include/simgrid_config.h.in" "${CMAKE_BINARY_DIR}/include/simgrid_config.h" @ONLY IMMEDIATE)
745 set(top_srcdir "${CMAKE_HOME_DIRECTORY}")
746 set(srcdir "${CMAKE_HOME_DIRECTORY}/src")
747 set(bindir "${CMAKE_BINARY_DIR}")
749 ### Script used when simgrid is installed
750 set(exec_prefix ${CMAKE_INSTALL_PREFIX})
751 set(includeflag "-I${CMAKE_INSTALL_PREFIX}/include -I${CMAKE_INSTALL_PREFIX}/include/smpi")
752 set(includedir "${CMAKE_INSTALL_PREFIX}/include")
753 set(libdir ${exec_prefix}/lib)
754 set(CMAKE_SMPI_COMMAND "export LD_LIBRARY_PATH=\"${CMAKE_INSTALL_PREFIX}/lib")
756 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${NS3_LIBRARY_PATH}")
758 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:\${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\"")
760 file(READ ${CMAKE_HOME_DIRECTORY}/src/smpi/smpitools.sh SMPITOOLS_SH)
761 configure_file(${CMAKE_HOME_DIRECTORY}/include/smpi/mpif.h.in ${CMAKE_BINARY_DIR}/include/smpi/mpif.h @ONLY)
762 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicc.in ${CMAKE_BINARY_DIR}/bin/smpicc @ONLY)
763 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicxx.in ${CMAKE_BINARY_DIR}/bin/smpicxx @ONLY)
764 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpiff.in ${CMAKE_BINARY_DIR}/bin/smpiff @ONLY)
765 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpif90.in ${CMAKE_BINARY_DIR}/bin/smpif90 @ONLY)
766 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpirun.in ${CMAKE_BINARY_DIR}/bin/smpirun @ONLY)
768 ### Script used when simgrid is compiling
769 set(includeflag "-I${CMAKE_HOME_DIRECTORY}/include -I${CMAKE_HOME_DIRECTORY}/include/smpi")
770 set(includeflag "${includeflag} -I${CMAKE_BINARY_DIR}/include -I${CMAKE_BINARY_DIR}/include/smpi")
771 set(includedir "${CMAKE_HOME_DIRECTORY}/include")
772 set(exec_prefix "${CMAKE_BINARY_DIR}/smpi_script/")
773 set(CMAKE_SMPI_COMMAND "export LD_LIBRARY_PATH=\"${CMAKE_BINARY_DIR}/lib")
775 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:${NS3_LIBRARY_PATH}")
777 set(CMAKE_SMPI_COMMAND "${CMAKE_SMPI_COMMAND}:\${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}\"")
778 set(libdir "${CMAKE_BINARY_DIR}/lib")
780 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicc.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc @ONLY)
781 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpicxx.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicxx @ONLY)
782 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpiff.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff @ONLY)
783 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpif90.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90 @ONLY)
784 configure_file(${CMAKE_HOME_DIRECTORY}/src/smpi/smpirun.in ${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun @ONLY)
786 set(top_builddir ${CMAKE_HOME_DIRECTORY})
789 execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpicc)
790 execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpicxx)
791 execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpiff)
792 execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpif90)
793 execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/bin/smpirun)
794 execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicc)
795 execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpicxx)
796 execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpiff)
797 execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpif90)
798 execute_process(COMMAND chmod a=rwx ${CMAKE_BINARY_DIR}/smpi_script/bin/smpirun)
801 set(generated_headers_to_install
802 ${CMAKE_CURRENT_BINARY_DIR}/include/smpi/mpif.h
803 ${CMAKE_CURRENT_BINARY_DIR}/include/simgrid_config.h
806 set(generated_headers
807 ${CMAKE_CURRENT_BINARY_DIR}/src/context_sysv_config.h
808 ${CMAKE_CURRENT_BINARY_DIR}/src/internal_config.h
811 set(generated_files_to_clean
813 ${generated_headers_to_install}
814 ${CMAKE_BINARY_DIR}/bin/smpicc
815 ${CMAKE_BINARY_DIR}/bin/smpicxx
816 ${CMAKE_BINARY_DIR}/bin/smpiff
817 ${CMAKE_BINARY_DIR}/bin/smpif90
818 ${CMAKE_BINARY_DIR}/bin/smpirun
819 ${CMAKE_BINARY_DIR}/bin/colorize
820 ${CMAKE_BINARY_DIR}/bin/simgrid_update_xml
821 ${CMAKE_BINARY_DIR}/examples/smpi/tracing/smpi_traced.trace
824 if(NOT "${CMAKE_BINARY_DIR}" STREQUAL "${CMAKE_HOME_DIRECTORY}")
825 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions0.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions0.txt COPYONLY)
826 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions1.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions1.txt COPYONLY)
827 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_allReduce.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allReduce.txt COPYONLY)
828 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_barrier.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_barrier.txt COPYONLY)
829 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_bcast.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_bcast.txt COPYONLY)
830 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_with_isend.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_with_isend.txt COPYONLY)
831 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_alltoall.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoall.txt COPYONLY)
832 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_alltoallv.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoallv.txt COPYONLY)
833 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_waitall.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_waitall.txt COPYONLY)
834 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_reducescatter.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_reducescatter.txt COPYONLY)
835 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_gather.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_gather.txt COPYONLY)
836 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay/actions_allgatherv.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allgatherv.txt COPYONLY)
837 configure_file(${CMAKE_HOME_DIRECTORY}/teshsuite/smpi/hostfile ${CMAKE_BINARY_DIR}/teshsuite/smpi/hostfile COPYONLY)
839 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/description_file ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/description_file COPYONLY)
840 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/README ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/README COPYONLY)
841 configure_file(${CMAKE_HOME_DIRECTORY}/examples/smpi/replay_multiple/smpi_replay.txt ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/smpi_replay.txt COPYONLY)
842 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)
843 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)
844 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)
845 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)
846 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)
847 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)
848 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)
849 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)
850 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)
851 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)
852 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)
853 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)
854 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)
855 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)
856 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)
857 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)
858 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)
859 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)
860 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)
861 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)
862 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)
863 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)
864 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)
865 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)
866 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)
867 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)
868 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)
869 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)
870 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)
871 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)
872 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)
873 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)
875 set(generated_files_to_clean
876 ${generated_files_to_clean}
877 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions0.txt
878 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions1.txt
879 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allReduce.txt
880 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_barrier.txt
881 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_bcast.txt
882 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_with_isend.txt
883 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoall.txt
884 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_alltoallv.txt
885 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_waitall.txt
886 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_gather.txt
887 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_allgatherv.txt
888 ${CMAKE_BINARY_DIR}/examples/smpi/replay/actions_reducescatter.txt
889 ${CMAKE_BINARY_DIR}/teshsuite/smpi/hostfile
890 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/description_file
891 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/README
892 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/smpi_replay.txt
893 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace0.txt
894 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace1.txt
895 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace2.txt
896 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace3.txt
897 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace4.txt
898 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace5.txt
899 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace6.txt
900 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace7.txt
901 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace8.txt
902 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace9.txt
903 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace10.txt
904 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace11.txt
905 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace12.txt
906 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace13.txt
907 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace14.txt
908 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace15.txt
909 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace16.txt
910 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace17.txt
911 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace18.txt
912 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace19.txt
913 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace20.txt
914 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace21.txt
915 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace22.txt
916 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace23.txt
917 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace24.txt
918 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace25.txt
919 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace26.txt
920 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace27.txt
921 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace28.txt
922 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace29.txt
923 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace30.txt
924 ${CMAKE_BINARY_DIR}/examples/smpi/replay_multiple/ti_traces_32_1/ti_trace31.txt
928 SET_DIRECTORY_PROPERTIES(PROPERTIES ADDITIONAL_MAKE_CLEAN_FILES
929 "${generated_files_to_clean}")
931 ### Define source packages for Libs
932 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/DefinePackages.cmake)
934 ### Build some Maintainer files
935 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MaintainerMode.cmake)
936 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/UnitTesting.cmake)
938 ### Setup gcc & clang flags
940 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/GCCFlags.cmake)
945 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MakeLib.cmake)
947 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/MakeLibWin.cmake)
951 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Java.cmake)
955 if(enable_memcheck_xml)
956 set(enable_memcheck true)
961 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Tests.cmake)
962 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/CTestConfig.cmake)
964 ### Define subdirectories
965 foreach(cmakefile ${CMAKEFILES_TXT})
966 string(REPLACE "/CMakeLists.txt" "" repository ${cmakefile})
967 add_subdirectory("${CMAKE_HOME_DIRECTORY}/${repository}")
970 ### Setup the distrib
971 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Distrib.cmake)
973 ### Build the doc (Windows downloads the doc instead of regenerating)
976 include(${CMAKE_HOME_DIRECTORY}/tools/cmake/Documentation.cmake)
978 find_program(WGET_PROGRAM NAMES wget)
979 message(STATUS "wget: ${WGET_PROGRAM}")
981 ADD_CUSTOM_TARGET(documentation
982 COMMENT "Downloading the SimGrid documentation..."
983 COMMAND ${WGET_PROGRAM} -r -np -nH -nd http://simgrid.gforge.inria.fr/simgrid/${release_version}/doc/
984 WORKING_DIRECTORY ${CMAKE_HOME_DIRECTORY}/doc/html
989 ### Print the result of configuration
991 message("______________________________________________________________________")
992 message("______________________________________________________________________ DEBUG")
993 message("CMAKE_HOME_DIRECTORY ........: ${CMAKE_HOME_DIRECTORY}")
995 message("PTH_STACKGROWTH .............: ${PTH_STACKGROWTH}")
996 message("HAVE_VA_COPY ................: ${HAVE_VA_COPY}")
998 message("\#define pth_skaddr_makecontext(skaddr,sksize) (${makecontext_addr})")
999 message("\#define pth_sksize_makecontext(skaddr,sksize) (${makecontext_size})")
1000 message("\#define __VA_COPY_USE ${__VA_COPY_USE}")
1001 message("HAVE_UCONTEXT ...............: ${HAVE_UCONTEXT}")
1003 message("HAVE_PTHREAD ................: ${HAVE_PTHREAD}")
1004 message("HAVE_SEM_INIT ...............: ${HAVE_SEM_INIT_LIB}")
1005 message("HAVE_SEM_TIMEDWAIT ..........: ${HAVE_SEM_TIMEDWAIT_LIB}")
1006 message("HAVE_MUTEX_TIMEDLOCK ........: ${HAVE_MUTEX_TIMEDLOCK_LIB}")
1007 message("HAVE_POSIX_GETTIME ..........: ${HAVE_POSIX_GETTIME}")
1009 message("STDC_HEADERS ................: ${STDC_HEADERS}")
1010 message("HAVE_VALGRIND_VALGRIND_H ....: ${HAVE_VALGRIND_VALGRIND_H}")
1011 message("HAVE_SYS_STAT_H .............: ${HAVE_SYS_STAT_H}")
1012 message("HAVE_WINDOWS_H ..............: ${HAVE_WINDOWS_H}")
1013 message("HAVE_ERRNO_H ................: ${HAVE_ERRNO_H}")
1014 message("HAVE_UNISTD_H ...............: ${HAVE_UNISTD_H}")
1015 message("HAVE_EXECINFO_H .............: ${HAVE_EXECINFO_H}")
1016 message("HAVE_SIGNAL_H ...............: ${HAVE_SIGNAL_H}")
1017 message("HAVE_SYS_TIME_H .............: ${HAVE_SYS_TIME_H}")
1018 message("HAVE_TIME_H .................: ${HAVE_TIME_H}")
1019 message("HAVE_DLFCN_H ................: ${HAVE_DLFCN_H}")
1022 message("HAVE_GETTIMEOFDAY ...........: ${HAVE_GETTIMEOFDAY}")
1023 message("HAVE_NANOSLEEP ..............: ${HAVE_NANOSLEEP}")
1024 message("HAVE_GETDTABLESIZE ..........: ${HAVE_GETDTABLESIZE}")
1025 message("HAVE_SYSCONF ................: ${HAVE_SYSCONF}")
1026 message("HAVE_POPEN ..................: ${HAVE_POPEN}")
1027 message("HAVE_MAKECONTEXT ............: ${HAVE_MAKECONTEXT}")
1028 message("HAVE_VASPRINTF ..............: ${HAVE_VASPRINTF}")
1029 message("HAVE_MMAP ...................: ${HAVE_MMAP}")
1030 message("HAVE_PRIVATIZATION ..........: ${HAVE_PRIVATIZATION}")
1031 message("HAVE_PROCESS_VM_READV .......: ${HAVE_PROCESS_VM_READV}")
1032 message("HAVE_THREAD_LOCAL_STORAGE ...: ${HAVE_THREAD_LOCAL_STORAGE}")
1033 message("HAVE_MMALLOC ................: ${HAVE_MMALLOC}")
1035 message("HAVE_THREAD_CONTEXTS .............: ${HAVE_THREAD_CONTEXTS}")
1036 message("HAVE_UCONTEXT_CONTEXTS ............: ${HAVE_UCONTEXT_CONTEXTS}")
1037 message("______________________________________________________________________")
1038 message("______________________________________________________________________ DEBUG END")
1041 message("\nConfiguration of package `simgrid':")
1042 message(" BUILDNAME ...................: ${BUILDNAME}")
1043 message(" SITE ........................: ${SITE}")
1045 message(" Release .....................: simgrid-${release_version}${SIMGRID_VERSION_EXTRA} (release build)")
1047 message(" Release .....................: simgrid-${release_version}${SIMGRID_VERSION_EXTRA} (development build)")
1050 message(" Compiler: C .................: ${CMAKE_C_COMPILER} (${CMAKE_C_COMPILER_ID})")
1051 message(" version .............: ${CMAKE_C_COMPILER_VERSION}")
1052 if(CMAKE_CXX_COMPILER)
1053 message(" Compiler: C++ ...............: ${CMAKE_CXX_COMPILER} (${CMAKE_CXX_COMPILER_ID})")
1054 message(" version .............: ${CMAKE_CXX_COMPILER_VERSION}")
1057 message(" Compiler: Javac .............: ${Java_JAVAC_EXECUTABLE}")
1058 message(" version .............: ${Java_VERSION_STRING}")
1060 message(" SWIG ................: Version ${SWIG_VERSION} found.")
1062 message(" SWIG ................: Missing.")
1065 if(CMAKE_Fortran_COMPILER)
1066 message(" Compiler: Fortran ...........: ${CMAKE_Fortran_COMPILER} (${CMAKE_Fortran_COMPILER_ID})")
1067 message(" version .............: ${CMAKE_Fortran_COMPILER_VERSION}")
1069 message(" Linker: .....................: ${CMAKE_LINKER}")
1070 message(" version .............: ${LINKER_VERSION}")
1072 message(" CFlags ......................: ${CMAKE_C_FLAGS}")
1073 message(" CXXFlags ....................: ${CMAKE_CXX_FLAGS}")
1074 message(" LDFlags .....................: ${CMAKE_C_LINK_FLAGS}")
1075 message(" with LTO ....................: ${enable_lto}")
1079 message(" Compile NS-3 ................: yes (path: ${NS3_PATH})")
1081 message(" Compile NS-3 ................: NO (hint: ${NS3_HINT})")
1085 message(" Compile Java ................: yes")
1086 message(" Native lib in jar .........: ${enable_lib_in_jar}")
1088 message(" Compile Java ................: NO")
1090 message(" Compile Scala................: ${HAVE_Scala}")
1091 message(" Compile Lua .................: ${HAVE_LUA}")
1092 message(" Compile Smpi ................: ${HAVE_SMPI}")
1093 message(" Compile MPI testsuite .......: ${enable_smpi_MPICH3_testsuite}")
1094 message(" Compile Smpi f77 ............: ${SMPI_FORTRAN}")
1095 message(" Compile Smpi f90 ............: ${SMPI_FORTRAN}")
1096 message(" Compile Boost.Context support: ${HAVE_BOOST_CONTEXTS}")
1098 message(" Maintainer mode .............: ${enable_maintainer_mode}")
1099 message(" Documentation................: ${enable_documentation}")
1100 message(" Model checking ..............: ${HAVE_MC}")
1101 message(" Tracing mode ................: ${enable_tracing}")
1102 message(" Jedule mode ................: ${enable_jedule}")
1103 message(" Graphviz mode ...............: ${HAVE_GRAPHVIZ}")
1104 message(" Sigc++ mode .................: ${SIMGRID_HAVE_LIBSIG}")
1105 message(" Mallocators .................: ${enable_mallocators}")
1107 message(" Simgrid dependencies ........: ${SIMGRID_DEP}")
1109 message(" INSTALL_PREFIX ..............: ${CMAKE_INSTALL_PREFIX}")
1111 exec_program("${CMAKE_COMMAND} -E make_directory ${PROJECT_BINARY_DIR}/Testing/Notes/" OUTPUT_VARIABLE OKIDOKI)
1112 file(WRITE ${PROJECT_BINARY_DIR}/Testing/Notes/Build "GIT version : ${GIT_VERSION}\n")
1113 file(APPEND ${PROJECT_BINARY_DIR}/Testing/Notes/Build "Release : simgrid-${release_version}\n")