[问题] 关于llvm tutorial

楼主: flypaper (一直飞)   2018-10-17 00:33:26
开发平台(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 */);
作者: a1u1usul3 (Q-Max)   2018-10-17 00:36:00
https://goo.gl/1Q5xkM编译参数?llvm版本?错误讯息?8.0.0非稳定版。编译参数一定要像他那样加一长串像这样 http://codepad.org/DgHkV5ih单单只有clang pass.cpp,则header档和library都不知道要找谁,要在编译的参数去指定
作者: akasan (KITO)   2018-10-18 23:03:00
1f blog 的范例已经更新并在 LLVM 6 & 7 测试过搂~
作者: a1u1usul3 (Q-Max)   2018-10-19 02:45:00
楼上是本人吗OAO?

Links booklink

Contact Us: admin [ a t ] ucptt.com