Skip to content

Commit

Permalink
Update Readme.md
Browse files Browse the repository at this point in the history
  • Loading branch information
mboehme authored Aug 18, 2017
1 parent 1d7a787 commit b4c1c6f
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,15 +106,20 @@ 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)
```bash
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
```
Expand All @@ -128,7 +133,6 @@ mkdir in
cp $SUBJECT/test/dtd* in
cp $SUBJECT/test/dtds/* in



# To be continued ...
```

0 comments on commit b4c1c6f

Please sign in to comment.