diff options
author | hexcoder <hexcoder-@users.noreply.github.com> | 2020-12-24 12:08:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-24 12:08:01 +0100 |
commit | 949f075247e5ecd3f146403626ea9730e928be4e (patch) | |
tree | 081b687659713352d17a3c6ec3806cc758474ed7 | |
parent | 895d0778b6a5173a264ecb4d4c39e3b99b12dbb0 (diff) | |
download | afl++-949f075247e5ecd3f146403626ea9730e928be4e.tar.gz |
revert condition on llvm-config.h (it did not work)
-rw-r--r-- | instrumentation/afl-compiler-rt.o.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/instrumentation/afl-compiler-rt.o.c b/instrumentation/afl-compiler-rt.o.c index dfff8939..cddde87c 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -40,7 +40,7 @@ #include <sys/wait.h> #include <sys/types.h> -#ifdef __llvm__ +#if !__GNUC__ #include "llvm/Config/llvm-config.h" #endif |