2

C++代码:

#include <iostream>
int main() {
    std::cout << "hello world\n";
}

使用 clang & lli:

clang++ -S -emit-llvm hello.cpp -o hello.ll

lli.exe你好.ll

它报告了一个致命错误,例如“程序使用了无法解析的外部函数??_7type_info@@6B@”。我该如何解决该链接问题?符号 ??_7type_info@@6B@ 定义在?

4

0 回答 0