diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-04-01 12:53:03 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-01 13:10:07 +0200 |
commit | c7cf2c17a2532814091946435a289a90aad659de (patch) | |
tree | 17df2cab02b78f23ac982966b4171ad6779a5062 | |
parent | 29b1e30126a40d86d1e349aa213cdca6728f7666 (diff) | |
download | afl++-c7cf2c17a2532814091946435a289a90aad659de.tar.gz |
fix ASAN bulid for old gcc versions
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile index f615c7dd..c60b7997 100644 --- a/Makefile +++ b/Makefile @@ -153,8 +153,8 @@ endif ifdef ASAN_BUILD $(info Compiling ASAN version of binaries) - CFLAGS+=-fsanitize=address -fstack-protector-strong - LDFLAGS+=-fsanitize=address -fstack-protector-strong + CFLAGS+=-fsanitize=address -fstack-protector-all + LDFLAGS+=-fsanitize=address -fstack-protector-all endif ifdef PROFILING |