Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Now SimGrid-ruby is on git.
[simgrid.git] / buildtools / pipol / Experimental.sh
old mode 100644 (file)
new mode 100755 (executable)
index afdde6b..8bf0676
@@ -10,71 +10,69 @@ else
 fi
 cd ./pipol/$PIPOL_HOST
 
-svn checkout svn://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk simgrid-trunk --quiet
-cd simgrid-trunk
+git clone git://scm.gforge.inria.fr/simgrid/simgrid.git simgrid --quiet
+cd simgrid
 
-if [ x$PIPOL_IMAGE == "xamd64-windows-server-2008-64bits-navarro-2011-03-15-122256.dd.gz" ] ; then
-       cmake \
-       -G"Unix Makefiles" \
-       -Denable_lua=off \
-       -Denable_tracing=off \
-       -Denable_smpi=off \
-       -Denable_supernovae=off \
-       -Denable_compile_optimizations=off \
-       -Denable_compile_warnings=off \
-       -Denable_lib_static=off \
-       -Denable_model-checking=off \
-       -Denable_latency_bound_tracking=off \
-       -Denable_gtnets=off .
-       ctest -D ExperimentalStart
-       ctest -D ExperimentalConfigure
-       ctest -D ExperimentalBuild
-       ctest -D ExperimentalSubmit
+perl ./buildtools/pipol/cmake.pl
+perl ./buildtools/pipol/ruby.pl
+
+#Those 3 lines is for GTNetS
+#sh ./buildtools/pipol/install_gtnets.sh ./gtnets_install
+#SIMGRID_ROOT=`pwd`
+#export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SIMGRID_ROOT/gtnets_install/lib
+
+#supernovae
+if [ "x$PIPOL_IMAGE" = "xi386-linux-debian-testing.dd.gz" ] ; then
+cmake -DCMAKE_C_COMPILER=gcc-4.6 -DCMAKE_CXX_COMPILER=g++-4.6 \
+-Denable_lua=on \
+-Denable_tracing=on \
+-Denable_smpi=on \
+-Denable_supernovae=on \
+-Denable_compile_optimizations=on \
+-Denable_compile_warnings=on \
+-Denable_lib_static=off \
+-Denable_model-checking=off \
+-Denable_latency_bound_tracking=off \
+-Drelease=on \
+-Denable_gtnets=off .
 else
+cmake \
+-Denable_lua=on \
+-Denable_tracing=on \
+-Denable_smpi=on \
+-Denable_supernovae=on \
+-Denable_compile_optimizations=on \
+-Denable_compile_warnings=on \
+-Denable_lib_static=off \
+-Denable_model-checking=off \
+-Denable_latency_bound_tracking=off \
+-Drelease=on \
+-Denable_gtnets=off .
+fi
+
+ctest -D ExperimentalStart
+ctest -D ExperimentalConfigure
+ctest -D ExperimentalBuild
+ctest -D ExperimentalTest
+ctest -D ExperimentalSubmit
+make clean
 
-       sh ./buildtools/pipol/install_gtnets.sh ./gtnets_install
-       SIMGRID_ROOT=`pwd`
-       export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$SIMGRID_ROOT/gtnets_install/lib
-       perl ./buildtools/pipol/cmake.pl
-       perl ./buildtools/pipol/ruby.pl
-       
-       #supernovae
-       cmake \
-       -Denable_lua=on \
-       -Denable_ruby=on \
-       -Denable_java=on \
-       -Denable_tracing=on \
-       -Denable_smpi=on \
-       -Denable_supernovae=on \
-       -Denable_compile_optimizations=on \
-       -Denable_compile_warnings=on \
-       -Denable_lib_static=off \
-       -Denable_model-checking=off \
-       -Denable_latency_bound_tracking=off \
-       -Denable_gtnets=off .
-       ctest -D ExperimentalStart
-       ctest -D ExperimentalConfigure
-       ctest -D ExperimentalBuild
-       ctest -D ExperimentalTest
-       ctest -D ExperimentalSubmit
-       make clean
-       
-       #MC
-       cmake \
-       -Denable_latency_bound_tracking=on \
-       -Denable_gtnets=on \
-       -Dgtnets_path=./gtnets_install \
-       -Denable_coverage=on \
-       -Denable_model-checking=on \
-       -Denable_compile_optimizations=off \
-       -Denable_auto_install=on \
-       -DCMAKE_INSTALL_PREFIX=./simgrid_install \
-       -Denable_supernovae=off .
-       ctest -D ExperimentalStart
-       ctest -D ExperimentalConfigure
-       ctest -D ExperimentalBuild
-       ctest -D ExperimentalTest
-       ctest -D ExperimentalCoverage
-       ctest -D ExperimentalSubmit
-       make clean
-fi
\ No newline at end of file
+#MC
+cmake \
+-Denable_latency_bound_tracking=on \
+-Denable_gtnets=on \
+-Dgtnets_path=./gtnets_install \
+-Denable_coverage=on \
+-Denable_model-checking=on \
+-Denable_compile_optimizations=off \
+-Denable_auto_install=on \
+-DCMAKE_INSTALL_PREFIX=./simgrid_install \
+-Drelease=on \
+-Denable_supernovae=off .
+ctest -D ExperimentalStart
+ctest -D ExperimentalConfigure
+ctest -D ExperimentalBuild
+ctest -D ExperimentalTest
+ctest -D ExperimentalCoverage
+ctest -D ExperimentalSubmit
+make clean