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.
在 makefile 中,编译器变量CXXFLAGS和CPPFLAGS每个都设置如下:
CXXFLAGS
CPPFLAGS
CXXFLAGS = -I. $(shell something)
虽然该-I directory选项用于在构建过程中包含另一个标准 lib 目录,但我无法弄清楚“。”的影响。在上面的例子中有。makefile即使在删除'-I.'.
-I directory
makefile
'-I.'
.引用当前目录(无论是在 Windows 还是 Unix 类型的系统上)。
.
-I.只需将当前目录添加到包含文件搜索路径。-L.会将其包含在库搜索路径中。
-I.
-L.