How can I bundle a core file with its associated executables and shared libraries?
When a program crashes, it generates a core file, that I can use to debug it with gdb. But if someone comes along behind me and "helpfully" recompiles the program with extra debugging turned on, or upgrades a package, or in any way messes with the system, that core file becomes useless.
So what I'd like is a way to bundle the core file with all of the other binaries that it references, into one big file.
Then, of course, I also need a way to open this file in gdb. I don't want to have to "extract" the files back to their original location and overwrite upgraded or changed binaries. I'm imagining a shell script that extracts the binaries to a temp directory and then tells gdb to look there.