标准库中的外部函数在lli中未解析

时间:2017-02-07 15:52:33

标签: llvm lli

我正在尝试在llvm lli中运行简单代码(根据Getting Started with the LLVM System

#include <stdio.h>

int main() {
  printf("hello world\n");
  return 0;
}

我用

获取了.bc文件
clang –O3 –emit-llvm hello.c –c –o hello.bc

 lli hello.bc

但是得到了下一个错误:

LLVM ERROR: Program used external function '_printf' which could not be resolved!

我认为这是一个非常基本的错误,但我并不了解我做错了什么。 在窗户上工作。

0 个答案:

没有答案