本文介绍了LLVM 3.5链接失败的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

使用实验性LLVM3.5库链接进行编译时,出现以下链接错误:

When compiling with the experimental LLVM3.5 libraries link the following link errors appear:

链接命令行是用llvm-config生成的,为什么会失败?

The link command line was generated with llvm-config, so why is this failing?

推荐答案

llvm-config没有为Terminfo库添加链接选项.添加

llvm-config is not adding the link option for the Terminfo library. Add

-ltinfo

要链接到库中,一切都应该很好.

To link in the library and all should be well.

这篇关于LLVM 3.5链接失败的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-29 10:53
查看更多