在使用SCons构建的程序的gprof支持中?
问候,
这是我的SConstruct文件:
env = Environment()
env.Append(CCFLAGS=['-g','-pg'])
env.Program(target='program1', source= ['program1.c'])
这里也是汇编的输出:
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
gcc -o program1.o -c -g -pg program1.c
gcc -o program1 program1.o
scons: done building targets.
正如你所看到的,我将“-pg”选项传递给构建环境。 在我构建之后,我运行该程序来生成“gmon.out”,但它不会生成。
有谁可以证实这个问题? 或有解决办法?
谢谢。
更新:
感谢这里给出的建议,更新的工作SConstruct文件如下。 链接器需要该标志,因此要通过scons传递它,必须使用“LINKFLAGS”选项。
env = Environment()
env.Append(CCFLAGS=['-g','-pg'], LINKFLAGS=['-pg'])
env.Program(target='program1', source= ['program1.c'])
编译输出:
scons: Reading SConscript files ...
scons: done reading SConscript files.
scons: Building targets ...
gcc -o program1.o -c -g -pg program1.c
gcc -o program1 -pg program1.o
scons: done building targets.
请注意链接阶段中的附加“-pg”。
在这种情况下,链接器也需要-pg
选项。 从海湾合作委员会男人法师:
-pg Generate extra code to write profile information suitable for the analysis program gprof. You must use this option when compiling the source files you want data about, and you must also use it when linking.
尝试将选项添加到LDFLAGS
环境变量。