Skip to content

Commit d670a10

Browse files
committed
update README
1 parent c6631d0 commit d670a10

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ cd how2heap
9090

9191
# the next command will prepare the target binary so it runs with
9292
# the expected libc version
93-
make
93+
make base
9494
./glibc_run.sh 2.30 ./malloc_playground -d -p
9595

9696
# now you can play with the binary with glibc-2.30

glibc_run.sh

+1-2
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,7 @@ function prep_in_docker () {
104104
echo "building the how2heap_docker image!"
105105
docker build -t how2heap_docker .
106106

107-
docker run --rm -it -u $(id -u ${USER}):$(id -g ${USER}) -v $HOW2HEAP_PATH:/root/how2heap how2heap_docker make clean >/dev/null
108-
docker run --rm -it -u $(id -u ${USER}):$(id -g ${USER}) -v $HOW2HEAP_PATH:/root/how2heap how2heap_docker make >/dev/null
107+
docker run --rm -it -u $(id -u ${USER}):$(id -g ${USER}) -v $HOW2HEAP_PATH:/root/how2heap how2heap_docker make clean all >/dev/null
109108
}
110109

111110
GLIBC_VERSION=$1

0 commit comments

Comments
 (0)