clang:错误:链接器命令失败,退出代码为 1(使用 -v 查看调用)
我是 LLVM 新手。我正在使用 Clang 3.0 来执行 C 程序。 我使用的是mandriva spring 2010。系统中安装了GCC版本4.4.1。 我使用以下链接来安装 LLVM。
svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm
我使用以下命令运行它,
clang file.c.
但出现以下错误。
/usr/bin/ld: cannot find -lgcc
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I am new to LLVM. I am using Clang 3.0 to execute c programs.
I am using mandriva spring 2010. GCC version 4.4.1 is installed in the system.
I used the following link to install LLVM.
svn co http://llvm.org/svn/llvm-project/llvm/trunk llvm
I run it by using the below command
clang file.c.
I am getting the following error.
/usr/bin/ld: cannot find -lgcc
clang: error: linker command failed with exit code 1 (use -v to see invocation)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在 clang 只有到系统库的硬编码路径(不同的 linux distors 对此有很大不同)。此错误意味着它不知道您的发行版,因此无法推断出必要的内容。
您必须修补 clang 源并提供必要的路径。或者,您可以在命令行中传递 -L 选项和相应的目录。
Right now clang only has hardcoded paths to your system libraries (different linux distors are pretty different wrt this). This error means that it does not know your distribution and thus cannot infer the necessary stuff.
You have to patch clang sources and provide the necessary paths. Alternatively, you can just pass -L option with the appropriate directory in the cmdline.