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
0fd3b1ea
Commit
0fd3b1ea
authored
Aug 27, 2019
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "winebuild: Quote stdcall decored symbols."
This reverts commit
a3e1fe93
. It breaks with older binutils. Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
a0190cc2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
spec16.c
tools/winebuild/spec16.c
+1
-1
spec32.c
tools/winebuild/spec32.c
+1
-1
No files found.
tools/winebuild/spec16.c
View file @
0fd3b1ea
...
@@ -759,7 +759,7 @@ static void output_module16( DLLSPEC *spec )
...
@@ -759,7 +759,7 @@ static void output_module16( DLLSPEC *spec )
if
(
!
odp
||
!
is_function
(
odp
))
continue
;
if
(
!
odp
||
!
is_function
(
odp
))
continue
;
output
(
".L__wine_%s_%u:
\n
"
,
spec
->
c_name
,
i
);
output
(
".L__wine_%s_%u:
\n
"
,
spec
->
c_name
,
i
);
output
(
"
\t
pushw %%bp
\n
"
);
output
(
"
\t
pushw %%bp
\n
"
);
output
(
"
\t
pushl $
\"
%s
\"
\n
"
,
output
(
"
\t
pushl $
%s
\n
"
,
asm_name
(
odp
->
type
==
TYPE_STUB
?
get_stub_name
(
odp
,
spec
)
:
get_link_name
(
odp
)));
asm_name
(
odp
->
type
==
TYPE_STUB
?
get_stub_name
(
odp
,
spec
)
:
get_link_name
(
odp
)));
output
(
"
\t
callw .L__wine_spec_callfrom16_%s
\n
"
,
get_callfrom16_name
(
odp
)
);
output
(
"
\t
callw .L__wine_spec_callfrom16_%s
\n
"
,
get_callfrom16_name
(
odp
)
);
}
}
...
...
tools/winebuild/spec32.c
View file @
0fd3b1ea
...
@@ -570,7 +570,7 @@ void output_exports( DLLSPEC *spec )
...
@@ -570,7 +570,7 @@ void output_exports( DLLSPEC *spec )
output
(
"1:
\t
jmp *__imp_%s-1b(%%eax)
\n
"
,
asm_name
(
get_link_name
(
odp
)));
output
(
"1:
\t
jmp *__imp_%s-1b(%%eax)
\n
"
,
asm_name
(
get_link_name
(
odp
)));
needs_get_pc_thunk
=
1
;
needs_get_pc_thunk
=
1
;
}
}
else
output
(
"
\t
jmp *
\"
__imp_%s
\"
\n
"
,
asm_name
(
get_link_name
(
odp
)));
else
output
(
"
\t
jmp *
__imp_%s
\n
"
,
asm_name
(
get_link_name
(
odp
)));
break
;
break
;
case
CPU_x86_64
:
case
CPU_x86_64
:
output
(
"
\t
.byte 0x48
\n
"
);
/* hotpatch prolog */
output
(
"
\t
.byte 0x48
\n
"
);
/* hotpatch prolog */
...
...
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