From: mquinson Date: Fri, 25 Feb 2005 10:14:10 +0000 (+0000) Subject: Document last changes (better SG/RL separation) X-Git-Tag: v3.3~4278 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/0c0b98c9079fcea54750c8abd2d3fb158cc82c31?hp=c9dbe49c065ae48f80aa760e91c09964cb8a9225 Document last changes (better SG/RL separation) git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1075 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/ChangeLog b/ChangeLog index 69bd839bb4..a3b8b89896 100644 --- a/ChangeLog +++ b/ChangeLog @@ -25,7 +25,11 @@ Changements [Martin] (infrastructure) - fix detection of older flex version and the reaction, since we do - depend on modern ones (we use lex_destroy) + depend on modern ones (we use lex_destroy) + - Better separation of SG and RL in the libs: remove all simulation code + from libgras. As a result, this lib is now only 200k when stripped. + Some of the xbt modules may also be dupplicated (two sets and such) and + should be cleaned/killed before SG3. -- SimGrid team NOT RELEASED YET diff --git a/examples/gras/ping/test_rl.in b/examples/gras/ping/test_rl.in index 89277208e4..f5a2a27081 100755 --- a/examples/gras/ping/test_rl.in +++ b/examples/gras/ping/test_rl.in @@ -1,10 +1,10 @@ #! @BASH@ -e if [ x@EXEEXT@ = x ] ; then - wine= + wine="libtool --mode=execute valgrind --run-libc-freeres=no" else wine=wine fi -$wine ./ping_server@EXEEXT@ 4000 $@ & +$wine ./ping_server@EXEEXT@ 4002 $@ & sleep 1 -$wine ./ping_client@EXEEXT@ 127.0.0.1 4000 $@ +$wine ./ping_client@EXEEXT@ 127.0.0.1 4002 $@