Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
5b338a87
Commit
5b338a87
authored
Apr 15, 2004
by
Kevin Koltzau
Committed by
Alexandre Julliard
Apr 15, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a few compile errors when cross compiling.
parent
22ff3d43
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
elf_module.c
dlls/dbghelp/elf_module.c
+1
-1
stabs.c
dlls/dbghelp/stabs.c
+3
-3
No files found.
dlls/dbghelp/elf_module.c
View file @
5b338a87
...
...
@@ -623,7 +623,7 @@ BOOL elf_synchronize_module_list(struct process* pcs)
return
FALSE
;
}
SYM_TYPE
elf_read_wine_loader_dbg_info
(
struct
process
pcs
,
struct
elf_info
*
elf_info
)
unsigned
long
elf_read_wine_loader_dbg_info
(
struct
process
*
pcs
)
{
return
-
1
;
}
...
...
dlls/dbghelp/stabs.c
View file @
5b338a87
...
...
@@ -1252,7 +1252,7 @@ SYM_TYPE stabs_parse(struct module* module, const char* addr,
public
->
address
,
public
->
size
,
stabs_parse_type
(
ptr
));
#else
symt_new_global_variable
(
module
,
symname
,
TRUE
/* FIXME */
,
symt_new_global_variable
(
module
,
compiland
,
symname
,
TRUE
/* FIXME */
,
load_offset
+
stab_ptr
->
n_value
,
0
,
stabs_parse_type
(
ptr
));
#endif
...
...
@@ -1379,7 +1379,7 @@ SYM_TYPE stabs_parse(struct module* module, const char* addr,
*/
symt_add_func_line
(
module
,
curr_func
,
source_idx
,
stab_ptr
->
n_desc
,
stab_ptr
->
n_value
-
curr_func
->
addr
.
off
);
stab_ptr
->
n_value
-
curr_func
->
addr
);
#endif
}
break
;
...
...
@@ -1413,7 +1413,7 @@ SYM_TYPE stabs_parse(struct module* module, const char* addr,
#else
curr_func
=
symt_new_function
(
module
,
compiland
,
symname
,
load_offset
+
stab_ptr
->
n_value
,
0
,
func_type
);
stabs_parse_type
(
ptr
)
);
#endif
}
else
...
...
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