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
6f84e89d
Commit
6f84e89d
authored
Nov 01, 2011
by
André Hentschel
Committed by
Alexandre Julliard
Nov 02, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Use ARMv7 for wine modules.
parent
7f7dd82c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
spec32.c
tools/winebuild/spec32.c
+3
-3
No files found.
tools/winebuild/spec32.c
View file @
6f84e89d
...
...
@@ -36,7 +36,7 @@
#define IMAGE_FILE_MACHINE_I386 0x014c
#define IMAGE_FILE_MACHINE_POWERPC 0x01f0
#define IMAGE_FILE_MACHINE_AMD64 0x8664
#define IMAGE_FILE_MACHINE_ARM
0x01C0
#define IMAGE_FILE_MACHINE_ARM
V7 0x01C4
/* Wine extension */
#define IMAGE_FILE_MACHINE_SPARC 0x2000
...
...
@@ -480,7 +480,7 @@ void output_module( DLLSPEC *spec )
{
case
CPU_x86
:
machine
=
IMAGE_FILE_MACHINE_I386
;
break
;
case
CPU_x86_64
:
machine
=
IMAGE_FILE_MACHINE_AMD64
;
break
;
case
CPU_ARM
:
machine
=
IMAGE_FILE_MACHINE_ARM
;
break
;
case
CPU_ARM
:
machine
=
IMAGE_FILE_MACHINE_ARM
V7
;
break
;
case
CPU_POWERPC
:
machine
=
IMAGE_FILE_MACHINE_POWERPC
;
break
;
case
CPU_SPARC
:
machine
=
IMAGE_FILE_MACHINE_SPARC
;
break
;
}
...
...
@@ -669,7 +669,7 @@ void output_fake_module( DLLSPEC *spec )
case
CPU_x86_64
:
put_word
(
IMAGE_FILE_MACHINE_AMD64
);
break
;
case
CPU_POWERPC
:
put_word
(
IMAGE_FILE_MACHINE_POWERPC
);
break
;
case
CPU_SPARC
:
put_word
(
IMAGE_FILE_MACHINE_SPARC
);
break
;
case
CPU_ARM
:
put_word
(
IMAGE_FILE_MACHINE_ARM
);
break
;
case
CPU_ARM
:
put_word
(
IMAGE_FILE_MACHINE_ARM
V7
);
break
;
}
put_word
(
nb_sections
);
/* NumberOfSections */
put_dword
(
0
);
/* TimeDateStamp */
...
...
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