Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 gcc 中包含带有 -I 命令行选项的目录会将目录附加到包含目录的头部。我想在系统包含目录之后添加一个要搜索的目录。在 gcc 中有没有办法做到这一点。
-nostdinc -I/first/include ... -I/last/include (请注意,您还需要正常的包含)
Gcc 有一个-idirafter标志,它将包含目录添加到最后搜索的目录(在每个用 指定的目录之后-I)
-idirafter
-I