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
aeb4e6e5
Commit
aeb4e6e5
authored
Jul 05, 2005
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Get rid of the global debugging flag.
parent
2b336340
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
6 deletions
+2
-6
build.h
tools/winebuild/build.h
+0
-1
main.c
tools/winebuild/main.c
+0
-4
spec32.c
tools/winebuild/spec32.c
+2
-1
No files found.
tools/winebuild/build.h
View file @
aeb4e6e5
...
...
@@ -221,7 +221,6 @@ extern int parse_debug_channels( const char *srcdir, const char *filename );
extern
int
current_line
;
extern
int
UsePIC
;
extern
int
debugging
;
extern
int
nb_debug_channels
;
extern
int
nb_lib_paths
;
extern
int
nb_errors
;
...
...
tools/winebuild/main.c
View file @
aeb4e6e5
...
...
@@ -46,7 +46,6 @@ int nb_lib_paths = 0;
int
nb_errors
=
0
;
int
display_warnings
=
0
;
int
kill_at
=
0
;
int
debugging
=
0
;
#ifdef __i386__
enum
target_cpu
target_cpu
=
CPU_x86
;
...
...
@@ -548,9 +547,6 @@ int main(int argc, char **argv)
output_file
=
stdout
;
argv
=
parse_options
(
argc
,
argv
,
spec
);
/* we only support relay debugging on i386 */
debugging
=
(
target_cpu
==
CPU_x86
);
switch
(
exec_mode
)
{
case
MODE_DLL
:
...
...
tools/winebuild/spec32.c
View file @
aeb4e6e5
...
...
@@ -291,7 +291,8 @@ static void output_exports( FILE *outfile, DLLSPEC *spec )
/* output relays */
if
(
debugging
)
/* we only support relay debugging on i386 */
if
(
target_cpu
==
CPU_x86
)
{
for
(
i
=
spec
->
base
;
i
<=
spec
->
limit
;
i
++
)
{
...
...
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