开发平台(Platform): (Ex: Win10, Linux, ...)
Ubuntu
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
clang
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
llvm
问题(Question):
我在看llvm的附带文件:
http://llvm.org/docs/WritingAnLLVMPass.html#running-a-pass-with-opt
里面有段 Hello.cpp
然后我发现 clang++ Hello.cpp是无法成功编译档案的
(错误讯息有点多 所以我就不加上了
我也试着编译 关于llvm/lib/Transform里面 也是无法成功
程式码(Code):(请善用置底文网页, 记得排版,禁止使用图档)
p.s我付的网址里面有这段code
#include "llvm/Pass.h"
#include "llvm/IR/Function.h"
#include "llvm/Support/raw_ostream.h"
using namespace llvm;
namespace {
struct Hello : public FunctionPass {
static char ID;
Hello() : FunctionPass(ID) {}
bool runOnFunction(Function &F) override {
errs() << "Hello: ";
errs().write_escaped(F.getName()) << '\n';
return false;
}
}; // end of struct Hello
} // end of anonymous namespace
char Hello::ID = 0;
static RegisterPass<Hello> X("hello", "Hello World Pass",
false /* Only looks at CFG */,
false /* Analysis Pass */);