Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
131fb795
Commit
131fb795
authored
Apr 06, 2020
by
Jacek Caban
Committed by
Alexandre Julliard
Apr 06, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dbghelp: Always build all loader backends.
Signed-off-by:
Jacek Caban
<
jacek@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
9896f1ce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
42 deletions
+0
-42
elf_module.c
dlls/dbghelp/elf_module.c
+0
-28
macho_module.c
dlls/dbghelp/macho_module.c
+0
-14
No files found.
dlls/dbghelp/elf_module.c
View file @
131fb795
...
...
@@ -19,13 +19,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#if defined(__svr4__) || defined(__sun)
#define __ELF__ 1
#endif
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
...
...
@@ -37,8 +30,6 @@
#include "wine/debug.h"
#include "wine/heap.h"
#ifdef __ELF__
#define ELF_INFO_DEBUG_HEADER 0x0001
#define ELF_INFO_MODULE 0x0002
#define ELF_INFO_NAME 0x0004
...
...
@@ -1778,22 +1769,3 @@ BOOL elf_read_wine_loader_dbg_info(struct process* pcs, ULONG_PTR addr)
pcs
->
loader
=
&
elf_loader_ops
;
return
TRUE
;
}
#else
/* !__ELF__ */
BOOL
elf_map_handle
(
HANDLE
handle
,
struct
image_file_map
*
fmap
)
{
return
FALSE
;
}
BOOL
elf_read_wine_loader_dbg_info
(
struct
process
*
pcs
,
ULONG_PTR
addr
)
{
return
FALSE
;
}
int
elf_is_in_thunk_area
(
ULONG_PTR
addr
,
const
struct
elf_thunk_area
*
thunks
)
{
return
-
1
;
}
#endif
/* __ELF__ */
dlls/dbghelp/macho_module.c
View file @
131fb795
...
...
@@ -21,9 +21,6 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#include "config.h"
#include "wine/port.h"
#include <stdio.h>
#include <assert.h>
#include <stdarg.h>
...
...
@@ -42,8 +39,6 @@
#include "wine/debug.h"
#include "wine/heap.h"
#ifdef HAVE_MACH_O_LOADER_H
struct
dyld_image_info32
{
UINT32
imageLoadAddress
;
/* const struct mach_header* */
...
...
@@ -1933,12 +1928,3 @@ BOOL macho_read_wine_loader_dbg_info(struct process* pcs, ULONG_PTR addr)
TRACE
(
"Found macho debug header %#lx
\n
"
,
pcs
->
dbg_hdr_addr
);
return
TRUE
;
}
#else
/* HAVE_MACH_O_LOADER_H */
BOOL
macho_read_wine_loader_dbg_info
(
struct
process
*
pcs
,
ULONG_PTR
addr
)
{
return
FALSE
;
}
#endif
/* HAVE_MACH_O_LOADER_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment