views:

201

answers:

3

I can't find it. In the watcher window I can manually type memory addresses but I'd like to see bigger chunks of memory...

If this doesn't exist, is there any other free memory mapper for the Mac (except for XCode and Eclipse)?

Thanks, rui

+1  A: 

The only way to do this that I've found is to type gdb commands in to the debugger - you can get GDB to dump areas of memory... hopefully there'll be this feature in a newer release!

Thomi
A: 

Thomi indicated that QtCreator has no such functionality.

In the meantime, since QtCreator uses GDB for debugging, you could try debugging with DDD instead (a gdb frontend). In the DDD manual you can read about visualizing memory ranges.

gnud
+1  A: 

The latest Git version of Qt Creator (1.3.80) supports memory debugging. You will find an entry in the debuggers context menu as you inspect a variable in the Locals and watchers menu.

Note that currently, there are not snapshots of the Qt Creator Master branch, but they should return in a weeks time. If you do not want to wait, you can compile Creator yourself. If you do not want to get involved with git, download a snapshot from http://qt.gitorious.org/qt-creator/qt-creator/trees/master;

danimo