本文主要是介绍‘iostream‘ file not foundclang(pp_file_not_found),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
概要
在 macOS 用 VSCode 打开 test.cpp 文件, 使用 CMake 构建, 生成了 compile_commands.json
看起来也正常。遇到 iostream 头文件画红色波浪线的报错, 也无法跳转。最后查出来是 brew install 了 LLVM 并且(莫名其妙的)放到了 PATH 里导致的。
环境说明 - VSCode
我是使用 clangd
, clang-tidy
插件来配置C++代码补全、跳转的,微软的 cpptools 插件虽然安装了但是配置了如下内容来禁用intellisence,整体仍然是走的 clangd:
// Microsoft CppTools plugin"C_Cpp.intelliSenseCacheSize": 1024,"C_Cpp.intelliSenseEngine": "disabled","C_Cpp.autocomplete": "disabled","C_Cpp.errorSquiggles": "disabled",
问题根源
在 ~/.zshrc
乱入了这句:
export PATH="/opt/homebrew/opt/llvm/bin:$PATH"
这导致 which clang
显示的 brew 安装的 clang。
然而我没设置 CC
, CXX
两个环境变量, 导致 cmake 构建时候找到的是 apple clang,和 homebrew 的 clang 不能很好的配合起来。
解决方法很简单, 干掉 ~/.zshrc
里 PATH 中的 homebrew 的 llvm 即可。
其他
‘iostream’ file not foundclang(pp_file_not_found) #425 这个帖子不适合我的情况。
这篇关于‘iostream‘ file not foundclang(pp_file_not_found)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!