winegcc: Remove SPARC support.

This commit is contained in:
André Hentschel 2013-03-08 21:34:33 +01:00 committed by Alexandre Julliard
parent 478401dce7
commit ee7ffdcb53
2 changed files with 1 additions and 4 deletions

View File

@ -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

View File

@ -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__)