我在使用LLVM时需要一些帮助
1)我从这里http://llvm.org/releases/download.html#3.6.0
下载CLANG和LLVM2)我正在编译CLANG和LLVM
3)我正在执行http://llvm.org/docs/GettingStartedVS.html#an-example-using-the-llvm-tool-chain
中的步骤 clang -c hello.c -emit-llvm -o hello.bc
- 生成hello.bc
lli hello.bc
- 失败并显示此错误
LLVM ERROR: Incompatible object format!
Stack dump:
0. Program arguments: lli.exe hello.bc
我是从Windows做的。有人可以帮忙吗?
答案 0 :(得分:0)
c编译为与Windows不兼容的EOF格式 按照代码帮助我通过bitecode
lli -mtriple=i686-pc-windows-cpu-elf hello.bc