diff options
author | David Carlier <devnexen@gmail.com> | 2019-12-02 13:15:01 +0000 |
---|---|---|
committer | David Carlier <devnexen@gmail.com> | 2019-12-02 14:26:29 +0000 |
commit | b0d590fef4acb4b002429e4aec195e5740122494 (patch) | |
tree | ab6a4383182cac0e68794f786178b1c2fb30395d /llvm_mode/LLVMInsTrim.so.cc | |
parent | 25b435060c399665bb54937664b90c11bef6dd2a (diff) | |
download | afl++-b0d590fef4acb4b002429e4aec195e5740122494.tar.gz |
LLVM 10 build fix proposal
c++14 is the minimum for this version, thus the hardcoded gnu++11 standard flag makes the build fails. Missing header only for this version seemingly for the option.
Diffstat (limited to 'llvm_mode/LLVMInsTrim.so.cc')
-rw-r--r-- | llvm_mode/LLVMInsTrim.so.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm_mode/LLVMInsTrim.so.cc b/llvm_mode/LLVMInsTrim.so.cc index f723a0fe..1d4e6f2f 100644 --- a/llvm_mode/LLVMInsTrim.so.cc +++ b/llvm_mode/LLVMInsTrim.so.cc @@ -13,6 +13,7 @@ #include "llvm/IR/Module.h" #include "llvm/Pass.h" #include "llvm/Support/raw_ostream.h" +#include "llvm/Support/CommandLine.h" #include "llvm/Transforms/IPO/PassManagerBuilder.h" #include "llvm/Transforms/Utils/BasicBlockUtils.h" #include "llvm/IR/DebugInfo.h" |