Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any memory browser in QtCreator?

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

like image 441
rui Avatar asked Sep 22 '09 21:09

rui


2 Answers

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;

like image 82
danimo Avatar answered Nov 13 '22 14:11

danimo


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!

like image 30
Thomi Avatar answered Nov 13 '22 14:11

Thomi