使用生成文件并禁用警告消息生成 a.out



这里有两个独立的问题。

首先,是否可以修改生成文件,使其生成 GDB 可读的 a.out?其次,在制作文件中,如何禁用屏幕输出上的所有警告消息?

以下是生成文件的内容:

ALL: timefield eqloc3d getdat
timefield: timefield.c common.c common.h getpar.c time_3d.c modresample.c eq.c eq.h
    cc timefield.c common.c getpar.c time_3d.c modresample.c eq.c ./libgeo.a -lsunmath -lm -g -o timefield
eqloc3d: deri.c eqloc3d.c getpar.c main.c  modresample.c common.h common.c modifyxy.c modifyxyz.c eqloc3d.h eq.c eq.h model.h initeqloc.h initeqloc.c
    cc deri.c eqloc3d.c getpar.c main.c modresample.c common.c modifyxy.c modifyxyz.c eq.c initeqloc.c ./libgeo.a -lsunmath -lm -xlic_lib=sunperf -g -o eqloc3d
getdat: eq.c eq.h getdat.c
    cc -g eq.c getdat.c -o getdat libgeo.a -lm

如果我运行makefile,它会创建三个二进制可执行文件:timefield,eqloc3d,getdat。一旦程序没有产生正确的输出,我就没有 a.out,因此我可以使用 GDB 来跟踪异常。

为什么需要a.out?

根据您的生成文件

,您的生成文件生成 3 个可执行文件。 它们正在生成.....

第一个问题:

是的。您必须添加"-g",以使可执行的调试对象。在您发布的makefile中,所有三个可执行文件getdat,timefieldeqloc3d都已经使用"-g"构建。

因此,可执行文件已准备好进行调试。只是您需要按如下所示进行呼叫。

$ gdb getdat 

$ gdb timefield

$ gdb eqloc3d

然后设置断点并使用适当的参数调用run(如果有(。

第二个问题:

使用 -w 禁止所有警告消息。

前任:

cc -w -g eq.c getdat.c -o getdat libgeo.a -lm

相关内容

  • 没有找到相关文章

最新更新