makefiles - 一次编译所有 c 文件
我想尝试 GCC 整个程序优化。 为此,我必须立即将所有 C 文件传递到编译器前端。 然而,我使用 makefile 来自动化我的构建过程,而且我并不是 makefile 魔法方面的专家。
如果我想仅使用一次 GCC 调用进行编译(甚至链接),我应该如何修改 makefile?
作为参考 - 我的 makefile 如下所示:
LIBS = -lkernel32 -luser32 -lgdi32 -lopengl32
CFLAGS = -Wall
OBJ = 64bitmath.o \
monotone.o \
node_sort.o \
planesweep.o \
triangulate.o \
prim_combine.o \
welding.o \
test.o \
main.o
%.o : %.c
gcc -c $(CFLAGS) $< -o $@
test: $(OBJ)
gcc -o $@ $^ $(CFLAGS) $(LIBS)
I want to experiment with GCC whole program optimizations. To do so I have to pass all C-files at once to the compiler frontend. However, I use makefiles to automate my build process, and I'm not an expert when it comes to makefile magic.
How should I modify the makefile if I want to compile (maybe even link) using just one call to GCC?
For reference - my makefile looks like this:
LIBS = -lkernel32 -luser32 -lgdi32 -lopengl32
CFLAGS = -Wall
OBJ = 64bitmath.o \
monotone.o \
node_sort.o \
planesweep.o \
triangulate.o \
prim_combine.o \
welding.o \
test.o \
main.o
%.o : %.c
gcc -c $(CFLAGS) lt; -o $@
test: $(OBJ)
gcc -o $@ $^ $(CFLAGS) $(LIBS)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要删除后缀规则 (%.o: %.c) 以支持大爆炸规则。
像这样的事情:
如果您要尝试 GCC 的整个程序优化,请执行
确保您将适当的标志添加到上面的 CFLAGS 中。
在阅读这些标志的文档时,我看到了有关链接时间的注释
优化也是如此; 你也应该调查那些。
You need to take out your suffix rule (%.o: %.c) in favour of a big-bang rule.
Something like this:
If you're going to experiment with GCC's whole-program optimization, make
sure that you add the appropriate flag to CFLAGS, above.
On reading through the docs for those flags, I see notes about link-time
optimization as well; you should investigate those too.