diff options
author | van Hauser <vh@thc.org> | 2020-11-08 17:11:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-08 17:11:57 +0100 |
commit | 4c59c5234aec0469e4dd02561dbd84387bd53155 (patch) | |
tree | 12d8cc15ab552e900943251d513f5680f7d1d629 /GNUmakefile.llvm | |
parent | 3b799c09cd68bb68b26784261f1fbaa3e737c747 (diff) | |
parent | 82d1c3e18dd1b90fa15f7c056f94dc1a06ee345d (diff) | |
download | afl++-4c59c5234aec0469e4dd02561dbd84387bd53155.tar.gz |
Merge pull request #598 from AFLplusplus/dev
fix afl-cc bug for llvm 10.0.0
Diffstat (limited to 'GNUmakefile.llvm')
-rw-r--r-- | GNUmakefile.llvm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GNUmakefile.llvm b/GNUmakefile.llvm index 2bb0263b..cc28695d 100644 --- a/GNUmakefile.llvm +++ b/GNUmakefile.llvm @@ -357,7 +357,7 @@ instrumentation/afl-common.o: ./src/afl-common.c $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ $(LDFLAGS) ./afl-cc: src/afl-cc.c instrumentation/afl-common.o - $(CC) $(CLANG_CFL) $(CFLAGS) $(CPPFLAGS) $< instrumentation/afl-common.o -o $@ -DLLVM_MAJOR=$(LLVM_MAJOR) $(LDFLAGS) -DCFLAGS_OPT=\"$(CFLAGS_OPT)\" + $(CC) $(CLANG_CFL) $(CFLAGS) $(CPPFLAGS) $< instrumentation/afl-common.o -o $@ -DLLVM_MINOR=$(LLVM_MINOR) -DLLVM_MAJOR=$(LLVM_MAJOR) $(LDFLAGS) -DCFLAGS_OPT=\"$(CFLAGS_OPT)\" @ln -sf afl-cc ./afl-c++ @ln -sf afl-cc ./afl-gcc @ln -sf afl-cc ./afl-g++ |