问候,
这是我的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”。
答案 0 :(得分:4)
在这种情况下,链接器还需要-pg
选项。来自GCC man mage:
-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
环境变量。