dbghelp: Support GNU debug link and build id in PE files.
Signed-off-by: Jacek Caban <jacek@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4694801e4f
commit
0dd4958688
|
@ -723,7 +723,8 @@ BOOL pe_load_debug_info(const struct process* pcs, struct module* module)
|
|||
|
||||
if (!(dbghelp_options & SYMOPT_PUBLICS_ONLY))
|
||||
{
|
||||
ret = pe_load_stabs(pcs, module);
|
||||
ret = image_check_alternate(&module->format_info[DFI_PE]->u.pe_info->fmap, module);
|
||||
ret = pe_load_stabs(pcs, module) || ret;
|
||||
ret = pe_load_dwarf(module) || ret;
|
||||
ret = pe_load_msc_debug_info(pcs, module) || ret;
|
||||
ret = ret || pe_load_coff_symbol_table(module); /* FIXME */
|
||||
|
|
Loading…
Reference in New Issue