C/C++ 是如何找头文件的
Standard Libraries
#include <...>
找编译器(准确说是预处理器)定义的寻找路径。
Show these paths
C++
clang++ -E -x c++ - -v
cpp -xc++ -v
C
clang -E -x c - -v
cpp -v
User-defined Headers
#include "..."
直接从当前目录开始寻找路径。
#include <...>
找编译器(准确说是预处理器)定义的寻找路径。
clang++ -E -x c++ - -v
cpp -xc++ -v
clang -E -x c - -v
cpp -v
#include "..."
直接从当前目录开始寻找路径。