He there #rust users. I'm struggling with debugging a freestanding UEFI binary inside of QEMU, seems like lldb doesn't find any debugging symbols inside the generated .pdb files. Seems to be a known issue for gdb, but lldb apparently supports it? I would like to have symbols available, but none of the things I find online indicate that anyone else just isn't able to see any of the debugging symbols. Could this be because of #![no_std] perhaps? I don't really know where to look for any info on this, so any help is appreciated!
#rustlang #uefi #qemu
@ebunix If you use cargo make sure you either compile dev profile or the profile you use has debug = true
@ryze yeah, it's running in dev, tried setting debug = true explicitly as well in case something was funky, but didn't change anything about the result.