如果我使用 g++作为我的编译器,我如何扫描 c++使用 clang 静态分析器创建文件?
我使用 g++ 编译我的 C++ 项目。当我尝试使用 clang 静态分析器 (scan-build) 检查我的代码,我收到错误:
>> scan-build g++ main.cpp
could not find clang line
How do I use the scan-build tool with g++?
I use g++ to compile my C++ project. When I try to use the clang static analyzer (scan-build) to check my code, I get an error:
>> scan-build g++ main.cpp
could not find clang line
How do I use the scan-build tool with g++?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看来 scan-build 无法将“g++”识别为编译器命令。它需要“clang”或“gcc”。如果将“g++”替换为“gcc -lstdc++”来构建项目,则扫描构建工具将正常工作。
It appears that scan-build is having trouble recognizing "g++" as the compiler command. It expects "clang" or "gcc". If you replace "g++" with "gcc -lstdc++" to build your project, the scan-build tool will work properly.