gcc:对 _mcount 的未定义引用(gprof 检测)
当使用 -pg
选项编译我的 C++ 源代码以注入 gprof 配置文件检测代码时,编译失败,并出现 undefined reference to _mcount
错误。
如果没有这个选项,一切都可以正常编译(和运行)。 我的情况有什么问题吗? (Solaris 10 SPARC 平台)
When compiling my c++ sources with the -pg
option to inject gprof profile instrumentation code the compile fails with the undefined reference to _mcount
error.
Without this option everything compiles (and runs) fine.
What is wrong in my case? (Solaris 10 SPARC Platform)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否两者编译每个目标文件并使用“-pg”标志链接最终的可执行文件?
Are you both compiling each object file and linking the final executable using the '-pg' flag?