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
1fe9eb1b
Commit
1fe9eb1b
authored
Jun 05, 1999
by
Pavel Roskin
Committed by
Alexandre Julliard
Jun 05, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it possible to link Wine statically (at least on RedHat 6.0).
parent
dfed208e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
stabs.c
debugger/stabs.c
+7
-2
No files found.
debugger/stabs.c
View file @
1fe9eb1b
...
...
@@ -1175,7 +1175,11 @@ DEBUG_ReadExecutableDbgInfo(void)
Elf32_Dyn
*
dynpnt
;
struct
r_debug
*
dbg_hdr
;
struct
link_map
*
lpnt
=
NULL
;
#ifdef __GNUC__
extern
Elf32_Dyn
_DYNAMIC
[]
__attribute__
((
weak
));
#else
extern
Elf32_Dyn
_DYNAMIC
[];
#endif
int
rtn
=
FALSE
;
int
rowcount
;
...
...
@@ -1196,10 +1200,11 @@ DEBUG_ReadExecutableDbgInfo(void)
* of the other shared libraries which might be loaded. Perform the
* same step for all of these.
*/
dynpnt
=
_DYNAMIC
;
if
(
dynpnt
==
NULL
)
if
(
(
&
_DYNAMIC
==
NULL
)
||
(
_DYNAMIC
==
NULL
)
)
goto
leave
;
dynpnt
=
_DYNAMIC
;
/*
* Now walk the dynamic section (of the executable, looking for a DT_DEBUG
* entry.
...
...
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