Hey zigfriends, 0.11.0 windows build seems to not symbolize backtraces properly out of the box. any std lib hacks I can do to make it work?
My setup is:
running in vscode via a cppvsdebug debug launch config using whatever zig is in 5PATH%, zig build is 0.11.0 installed via zigup
I've seen partial symbolication success with catch unreachable, but it seemed to die in recursive functions.
What I'm seeing now is GPA's leak report is just listing addresses like so:
???:?:?: 0x7ff66a3bd0cd in ??? (???)
???:?:?: 0x7ff66a381d7a in ??? (???)
???:?:?: 0x7ff66a381bee in ??? (???)
???:?:?: 0x7ff66a37f7df in ??? (???)
???:?:?: 0x7ff66a37f0e7 in ??? (???)
???:?:?: 0x7ff66a520d4d in ??? (???)
???:?:?: 0x7ff66a5167a1 in ??? (???)
???:?:?: 0x7ff66a50a206 in ??? (???)
error(gpa): memory address 0x1cf4aba0040 leaked:
???:?:?: 0x7ff66a3bd0cd in ??? (???)
???:?:?: 0x7ff66a381d7a in ??? (???)
???:?:?: 0x7ff66a381bee in ??? (???)
???:?:?: 0x7ff66a37f7df in ??? (???)
???:?:?: 0x7ff66a37f0e7 in ??? (???)
???:?:?: 0x7ff66a520d4d in ??? (???)
???:?:?: 0x7ff66a5167a1 in ??? (???)
???:?:?: 0x7ff66a50a206 in ??? (???)```
(truncated, I have a bunch of leaks 😛 )