"Anybody know how to debug..." <- > <@diondokter:matrix.org> Anybody know how to debug where stuff in .rodata comes from? > Apparently I've got 15kb of that stuff and want to know if I can trim it down a bit. > Most of the rodata doesn't have proper symbols Watchpoint / Breakpoint on memory access maybe? Not very practical unless it's possible to set it to watch more than the size of a datatype though... Which I'm not sure how. It needs to be read access I guess.... If I had an object and wanted to know if it was in .rodata I would try to write directly to it's address and see if it faults. Which is kinda the other way around... At least in C that is.