From b4c1c6ff67d3c02d89d9d823853a568a56911313 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcel=20B=C3=B6hme?= Date: Fri, 18 Aug 2017 16:57:32 +0800 Subject: [PATCH] Update Readme.md --- Readme.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/Readme.md b/Readme.md index 71b17d01..2fa7f3af 100644 --- a/Readme.md +++ b/Readme.md @@ -106,7 +106,10 @@ cat $TMP_DIR/BBcalls.txt | sort | uniq > $TMP_DIR/BBcalls2.txt && mv $TMP_DIR/BB $AFLGO/scripts/genDistance.sh $SUBJECT $TMP_DIR xmllint # Check distance file -tail $TMP_DIR/distance.cfg.txt +echo "Distance values:" +head -n5 $TMP_DIR/distance.cfg.txt +echo "..." +tail -n5 $TMP_DIR/distance.cfg.txt ``` 8) Note: If `distance.cfg.txt` is empty, there was some problem computing the CG-level and BB-level target distance. See `$TMP_DIR/step*`. 9) Instrument subject (i.e., libxml2) @@ -114,7 +117,9 @@ tail $TMP_DIR/distance.cfg.txt export CFLAGS="$COPY_CFLAGS -distance=$TMP_DIR/distance.cfg.txt" export CXXFLAGS="$COPY_CXXFLAGS -distance=$TMP_DIR/distance.cfg.txt" pushd $SUBJECT - make -j$(nproc) clean + # Team time? 🍵 + make clean + ./configure --disable-shared make -j$(nproc) all popd ``` @@ -128,7 +133,6 @@ mkdir in cp $SUBJECT/test/dtd* in cp $SUBJECT/test/dtds/* in - - +# To be continued ... ```