适用于 Solaris SPARC 平台的探查器(适用于 C++ 应用程序)
是否有适用于 Solaris 10 SPARC 架构的分析器可与 C++ 应用程序一起使用? 如果重要的话:我们使用 gcc 来编译我们的 c++ 源代码。
Is there a profiler for the Solaris 10 SPARC architecture for the use with c++ applications?
If it matters: We're using gcc for compiling our c++ sources.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可以使用带有分析器的免费 Solaris/Oracle Studio。 http://www.oracle.com/technetwork/server-storage /solarisstudio/overview/index.html
You can use free Solaris/Oracle Studio which comes with a profiler. http://www.oracle.com/technetwork/server-storage/solarisstudio/overview/index.html
如果您买不起 Quantify(它并不便宜),那么您可以选择使用侵入式库或使用类似 DTrace。
还值得检查这个问题:Beyond Stack Sampling: C++ Profilers
如果你能掌握NetBeans - 我相信其中内置了一个分析器(我认为在下面使用了 DTrace)
If you can't afford Quantify (it's not cheap), then you have the option of RYO using either an intrusive library or using something like DTrace.
Also worth checking out this question: Beyond Stack Sampling: C++ Profilers
If you can get hold of NetBeans - I believe there is a profiler built into that (which uses DTrace underneath, I think)
我认为您可以使用 Rational Quantify,或者如果您使用 gcc,则 gprof 也可以。
I think you can use Rational Quantify, or if you're using gcc, gprof will work.
如果您可以使用 Zoom,我会推荐它,但我不确定它是否仅限于 Linux 。
但是,总会有丑陋的-小鸭法。
If you could use Zoom, I'd recommend it, but I'm not sure if it's limited to Linux.
But then, there's always the ugly-duckling method.