From 48c2d516899dcd77f1c167b195eb45b2a71cc303 Mon Sep 17 00:00:00 2001 From: vanhauser-thc Date: Mon, 27 Jun 2022 08:31:03 +0200 Subject: nits --- docs/INSTALL.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'docs/INSTALL.md') diff --git a/docs/INSTALL.md b/docs/INSTALL.md index e29fca96..41ec8561 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -8,11 +8,11 @@ hence afl-clang-lto is available) or just pull directly from the Docker Hub (for x86_64 and arm64): ```shell -docker pull docker.io/aflplusplus/aflplusplus:stable -docker run -ti -v /location/of/your/target:/src docker.io/aflplusplus/aflplusplus:stable +docker pull aflplusplus/aflplusplus: +docker run -ti -v /location/of/your/target:/src aflplusplus/aflplusplus ``` -This image is automatically generated when a push to the stable repo happens. +This image is automatically generated when a push to the stable branch happens. You will find your target source code in `/src` in the container. Note: you can also pull `aflplusplus/aflplusplus:dev` which is the most current @@ -21,6 +21,9 @@ development state of AFL++. If you want to build AFL++ yourself, you have many options. The easiest choice is to build and install everything: +NOTE: depending on your Debian/Ubuntu/Kali/... version replease `-12` with +whatever llvm version is available! + ```shell sudo apt-get update sudo apt-get install -y build-essential python3-dev automake cmake git flex bison libglib2.0-dev libpixman-1-dev python3-setuptools -- cgit 1.4.1 From 32c4be47738a9e53de0da108dfbd134017d38b71 Mon Sep 17 00:00:00 2001 From: Augustus Date: Thu, 7 Jul 2022 17:01:36 +0800 Subject: add missing dependencies for "make source-only" --- docs/INSTALL.md | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/INSTALL.md') diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 41ec8561..7e474528 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -46,6 +46,7 @@ assisting tooling compiled but are not interested in binary-only targets, then instead choose: ```shell +sudo apt install -y cargo libgtk-3-dev make source-only ``` -- cgit 1.4.1 From 72344a2f5fdb658426fa4a49ce80f1bf28a027ca Mon Sep 17 00:00:00 2001 From: Augustus Date: Thu, 7 Jul 2022 18:48:02 +0800 Subject: move the apt call --- docs/INSTALL.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'docs/INSTALL.md') diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 7e474528..9036a1f1 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -26,7 +26,7 @@ whatever llvm version is available! ```shell sudo apt-get update -sudo apt-get install -y build-essential python3-dev automake cmake git flex bison libglib2.0-dev libpixman-1-dev python3-setuptools +sudo apt-get install -y build-essential python3-dev automake cmake git flex bison libglib2.0-dev libpixman-1-dev python3-setuptools cargo libgtk-3-dev # try to install llvm 12 and install the distro default if that fails sudo apt-get install -y lld-12 llvm-12 llvm-12-dev clang-12 || sudo apt-get install -y lld llvm llvm-dev clang sudo apt-get install -y gcc-$(gcc --version|head -n1|sed 's/\..*//'|sed 's/.* //')-plugin-dev libstdc++-$(gcc --version|head -n1|sed 's/\..*//'|sed 's/.* //')-dev @@ -46,7 +46,6 @@ assisting tooling compiled but are not interested in binary-only targets, then instead choose: ```shell -sudo apt install -y cargo libgtk-3-dev make source-only ``` -- cgit 1.4.1