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
425bd55b
Commit
425bd55b
authored
Sep 07, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegcc: Don't disable unwind tables for PE targets.
parent
a5563e25
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
winegcc.c
tools/winegcc/winegcc.c
+1
-2
No files found.
tools/winegcc/winegcc.c
View file @
425bd55b
...
...
@@ -832,8 +832,6 @@ static struct strarray get_winebuild_args(struct options *opts)
for
(
i
=
0
;
i
<
opts
->
prefix
.
count
;
i
++
)
strarray_add
(
&
spec_args
,
strmake
(
"-B%s"
,
opts
->
prefix
.
str
[
i
]
));
strarray_addall
(
&
spec_args
,
opts
->
winebuild_args
);
if
(
opts
->
unwind_tables
)
strarray_add
(
&
spec_args
,
"-fasynchronous-unwind-tables"
);
else
strarray_add
(
&
spec_args
,
"-fno-asynchronous-unwind-tables"
);
return
spec_args
;
}
...
...
@@ -961,6 +959,7 @@ static const char *build_spec_obj( struct options *opts, const char *spec_file,
{
if
(
opts
->
pic
)
strarray_add
(
&
spec_args
,
"-fPIC"
);
if
(
opts
->
use_msvcrt
)
strarray_add
(
&
spec_args
,
"-mno-cygwin"
);
if
(
opts
->
unwind_tables
)
strarray_add
(
&
spec_args
,
"-fasynchronous-unwind-tables"
);
}
strarray_add
(
&
spec_args
,
opts
->
shared
?
"--dll"
:
"--exe"
);
if
(
opts
->
fake_module
)
...
...
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