about summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-12-28 13:32:51 +0100
committerGitHub <noreply@github.com>2020-12-28 13:32:51 +0100
commite22db8d60959ef7d78b4710203c7547b4a47e5ff (patch)
tree904fec08a2de0108950abd62bd1fb8152417ed7a /Dockerfile
parentfa933036a7bdbf9a59a9b1b7669d6ec7db64a202 (diff)
parentf1b4b38152afd1739e10aafe0febe06854ac62ae (diff)
downloadafl++-e22db8d60959ef7d78b4710203c7547b4a47e5ff.tar.gz
Merge pull request #663 from AFLplusplus/dev
Fix Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index c8e09b66..abb76209 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -56,7 +56,7 @@ WORKDIR /AFLplusplus
 
 RUN export REAL_CXX=g++-10 && export CC=gcc-10 && \
     export CXX=g++-10 && make clean && \
-    make distrib && make install && make clean
+    make distrib CFLAGS="-O3 -funroll-loops -D_FORTIFY_SOURCE=2" && make install && make clean
 
 RUN echo 'alias joe="jupp --wordwrap"' >> ~/.bashrc
 RUN echo 'export PS1="[afl++]$PS1"' >> ~/.bashrc