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
b3895f55
Commit
b3895f55
authored
Nov 13, 2023
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Include x86-64 entry points in ARM64EC builds.
parent
955664c8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
parser.c
tools/winebuild/parser.c
+4
-0
No files found.
tools/winebuild/parser.c
View file @
b3895f55
...
@@ -539,6 +539,10 @@ static const char *parse_spec_flags( DLLSPEC *spec, ORDDEF *odp, const char *tok
...
@@ -539,6 +539,10 @@ static const char *parse_spec_flags( DLLSPEC *spec, ORDDEF *odp, const char *tok
token
=
GetToken
(
0
);
token
=
GetToken
(
0
);
}
while
(
token
&&
*
token
==
'-'
);
}
while
(
token
&&
*
token
==
'-'
);
/* x86-64 implies arm64ec */
if
(
odp
->
flags
&
FLAG_CPU
(
CPU_x86_64
))
odp
->
flags
|=
FLAG_CPU
(
CPU_ARM64EC
);
if
(
cpu_mask
&
FLAG_CPU
(
CPU_x86_64
))
cpu_mask
|=
FLAG_CPU
(
CPU_ARM64EC
);
if
(
cpu_mask
)
odp
->
flags
|=
FLAG_CPU_MASK
&
~
cpu_mask
;
if
(
cpu_mask
)
odp
->
flags
|=
FLAG_CPU_MASK
&
~
cpu_mask
;
return
token
;
return
token
;
}
}
...
...
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