2

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.

MRalwasser
  • 14,580
  • 14
  • 95
  • 134

4 Answers4

3

You can use free Solaris/Oracle Studio which comes with a profiler. http://www.oracle.com/technetwork/server-storage/solarisstudio/overview/index.html

Maxim Egorushkin
  • 119,842
  • 14
  • 147
  • 239
2

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)

Community
  • 1
  • 1
Nim
  • 32,149
  • 2
  • 56
  • 98
1

I think you can use Rational Quantify, or if you're using gcc, gprof will work.

Chris Card
  • 3,058
  • 16
  • 15
1

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.

Community
  • 1
  • 1
Mike Dunlavey
  • 38,662
  • 12
  • 86
  • 126