Persuading dbx to use recompiled object files
When loading a core file, I get:
dbx: warning: Object file is not the same one that was linked into executable.
Skipping stabs. (see `help finding-files')
because I recompiled the object files as the originally compiled object files are no longer available. How can I force dbx to use the newly compiled object files -- they should be identical to the original as I have used the exact same source C++ code?
The core files are hard to replicate, so I can't just recompile and rerun the program.
Thanks

