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
574f058b
Commit
574f058b
authored
Aug 07, 2003
by
Richard Cohen
Committed by
Alexandre Julliard
Aug 07, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the ELF sections for the addresses of globals, as the STABS are
likely to be wrong.
parent
387ca9ba
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
hash.c
programs/winedbg/hash.c
+3
-1
stabs.c
programs/winedbg/stabs.c
+3
-2
No files found.
programs/winedbg/hash.c
View file @
574f058b
...
...
@@ -225,7 +225,9 @@ DEBUG_AddSymbol( const char * name, const DBG_VALUE *value,
* - a second time with the correct address
* SYM_INVALID is set for the first pass, and cleared in the second
* the code below gets most of information for both passes
* latest GCC version seem to provide correct address in first pass,
*
* some GCC versions may provide the correct address in the first pass
* but it does not seem to be sensible to rely on that.
*/
if
(
nh
->
value
.
addr
.
seg
==
0
&&
nh
->
value
.
addr
.
off
==
0
&&
c
!=
0
)
{
...
...
programs/winedbg/stabs.c
View file @
574f058b
...
...
@@ -980,16 +980,17 @@ enum DbgInfoLoad DEBUG_ParseStabs(char * addr, void *load_offset,
*
* With a.out or mingw, they actually do make some amount of sense.
*/
new_value
.
addr
.
seg
=
0
;
new_value
.
type
=
DEBUG_ParseStabType
(
ptr
);
new_value
.
addr
.
off
=
(
unsigned
long
)
load_offset
+
stab_ptr
->
n_value
;
new_value
.
addr
.
seg
=
0
;
new_value
.
cookie
=
DV_TARGET
;
stab_strcpy
(
symname
,
sizeof
(
symname
),
ptr
);
#ifdef __ELF__
new_value
.
addr
.
off
=
0
;
curr_sym
=
DEBUG_AddSymbol
(
symname
,
&
new_value
,
currpath
,
SYM_WINE
|
SYM_DATA
|
SYM_INVALID
);
#else
new_value
.
addr
.
off
=
(
unsigned
long
)
load_offset
+
stab_ptr
->
n_value
;
curr_sym
=
DEBUG_AddSymbol
(
symname
,
&
new_value
,
currpath
,
SYM_WINE
|
SYM_DATA
);
#endif
...
...
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