I have a number of massive files being loaded into various structures and used for analysis in a c++ console application in Windows. In release mode this data is managed fine, but when I enable debug it takes minutes to load and consumes many GB of memory, which effectively cripples any usefulness of the debug version. I want to be able to debug my normal code, but allow these data sets to be loaded in the normal "release" mode as access to these do not need to be debugged. I would ideally like to be able to define this at named variable level, as I still want full debug functionality of the new variables in my code.
This post: lldb-debugging-ignore-variables-of-specific-classes-to-speed-up-debugging suggested hiding the locals tab might work (but it didn't)
Is there any way of achieving this?