使用SVN clang: error: linker command failed with exit code 1 (use -v to see invocation)

再把项目上传到SVN仓库上,然后再拉到本地编译时出现如下错误

1
2
ld: library not found for -lxxxxxxxxxxxx  
clang: error: linker command failed with exit code 1 (use -v to see invocation)


原因:

SVN在上传资源服务器时默认配置会把一些第三方的.a库文件等给忽略了,然后就造成这样的错误。


解决办法:

配置global-ignores文件


因为我用的是Cornerstone图像工具,Preferences -->Subversion -->General ,去掉默认的勾选状态,删掉 *.a标签,然后Save即可,如下图。

使用SVN clang: error: linker command failed with exit code 1 (use -v to see invocation)

使用SVN clang: error: linker command failed with exit code 1 (use -v to see invocation)




     本文转自新风作浪 51CTO博客,原文链接:http://blog.51cto.com/duxinfeng/1418988,如需转载请自行联系原作者




上一篇:一个资料借阅模块的ddd代码实现


下一篇:Java中CallableStatement调用Oracle存储过程总结