mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[WINESYNC] 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> wine commit id 0dd495868846f30d9bb8f15f389d2b1ff6f383cb by Jacek Caban <jacek@codeweavers.com>
This commit is contained in:
parent
ebdb2b35d9
commit
710c080147
2 changed files with 3 additions and 2 deletions
|
@ -753,7 +753,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;
|
||||
#ifndef DBGHELP_STATIC_LIB
|
||||
ret = pe_load_msc_debug_info(pcs, module) || ret;
|
||||
|
|
|
@ -4,4 +4,4 @@ files:
|
|||
include/dbghelp.h: sdk/include/psdk/dbghelp.h
|
||||
include/wine/mscvpdb.h: sdk/include/reactos/wine/mscvpdb.h
|
||||
tags:
|
||||
wine: 4694801e4f58f0e856327d251ac98cfb573fd83b
|
||||
wine: 0dd495868846f30d9bb8f15f389d2b1ff6f383cb
|
||||
|
|
Loading…
Reference in a new issue