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
ee7ffdcb
Commit
ee7ffdcb
authored
Mar 08, 2013
by
André Hentschel
Committed by
Alexandre Julliard
Mar 11, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winegcc: Remove SPARC support.
parent
478401dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
4 deletions
+1
-4
utils.h
tools/winegcc/utils.h
+1
-1
winegcc.c
tools/winegcc/winegcc.c
+0
-3
No files found.
tools/winegcc/utils.h
View file @
ee7ffdcb
...
...
@@ -37,7 +37,7 @@
enum
target_cpu
{
CPU_x86
,
CPU_x86_64
,
CPU_
SPARC
,
CPU_
POWERPC
,
CPU_ARM
,
CPU_ARM64
CPU_x86
,
CPU_x86_64
,
CPU_POWERPC
,
CPU_ARM
,
CPU_ARM64
};
enum
target_platform
...
...
tools/winegcc/winegcc.c
View file @
ee7ffdcb
...
...
@@ -158,7 +158,6 @@ static const struct
{
"i786"
,
CPU_x86
},
{
"amd64"
,
CPU_x86_64
},
{
"x86_64"
,
CPU_x86_64
},
{
"sparc"
,
CPU_SPARC
},
{
"powerpc"
,
CPU_POWERPC
},
{
"arm"
,
CPU_ARM
},
{
"aarch64"
,
CPU_ARM64
}
...
...
@@ -218,8 +217,6 @@ struct options
static
const
enum
target_cpu
build_cpu
=
CPU_x86
;
#elif defined(__x86_64__)
static
const
enum
target_cpu
build_cpu
=
CPU_x86_64
;
#elif defined(__sparc__)
static
const
enum
target_cpu
build_cpu
=
CPU_SPARC
;
#elif defined(__powerpc__)
static
const
enum
target_cpu
build_cpu
=
CPU_POWERPC
;
#elif defined(__arm__)
...
...
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