Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Enable tracing by default. This modules rocks you should use it
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 13 Jun 2012 15:20:41 +0000 (17:20 +0200)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 13 Jun 2012 15:20:57 +0000 (17:20 +0200)
ChangeLog
buildtools/Cmake/CompleteInFiles.cmake
buildtools/Cmake/Option.cmake

index 3e4440a..43a0b9a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@ SimGrid (3.8) NOT RELEASED; urgency=low
  CMAKE:
  * Remove option custom_flags. Now use environment variables CFLAGS
    and LDFLAGS.
+ * Enable tracing by default. This modules rocks you should use it.
 
  MSG:
  * Add an experimental interface to manipulate VMs. They are mainly
index 0ab58f2..0da9a0a 100644 (file)
@@ -173,10 +173,12 @@ endif(WIN32)
 
 set(CONTEXT_UCONTEXT 0)
 SET(CONTEXT_THREADS 0)
-SET(HAVE_TRACING 0)
+SET(HAVE_TRACING 1)
 
 if(enable_tracing)
        SET(HAVE_TRACING 1)
+else(enable_tracing)   
+       SET(HAVE_TRACING 0)
 endif(enable_tracing)
 
 if(enable_jedule)
index 3e180e3..75ae356 100644 (file)
@@ -22,7 +22,7 @@ option(enable_ns3    "Whether ns3 model is activated." off)
 option(enable_lua "Whether the lua bindings are activated." off)
 option(enable_compile_warnings "Whether compilation warnings should be turned into errors." off)
 option(enable_maintainer_mode "Whether flex and flexml files should be rebuilt." off)
-option(enable_tracing "Tracing simulations for visualization." off)
+option(enable_tracing "Tracing simulations for visualization." on)
 option(enable_latency_bound_tracking "" off)
 option(enable_coverage "Enable coverage." off)
 option(enable_memcheck "Enable memcheck." off)