winegcc: Remove SPARC support.
This commit is contained in:
parent
478401dce7
commit
ee7ffdcb53
|
@ -37,7 +37,7 @@
|
||||||
|
|
||||||
enum target_cpu
|
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
|
enum target_platform
|
||||||
|
|
|
@ -158,7 +158,6 @@ static const struct
|
||||||
{ "i786", CPU_x86 },
|
{ "i786", CPU_x86 },
|
||||||
{ "amd64", CPU_x86_64 },
|
{ "amd64", CPU_x86_64 },
|
||||||
{ "x86_64", CPU_x86_64 },
|
{ "x86_64", CPU_x86_64 },
|
||||||
{ "sparc", CPU_SPARC },
|
|
||||||
{ "powerpc", CPU_POWERPC },
|
{ "powerpc", CPU_POWERPC },
|
||||||
{ "arm", CPU_ARM },
|
{ "arm", CPU_ARM },
|
||||||
{ "aarch64", CPU_ARM64 }
|
{ "aarch64", CPU_ARM64 }
|
||||||
|
@ -218,8 +217,6 @@ struct options
|
||||||
static const enum target_cpu build_cpu = CPU_x86;
|
static const enum target_cpu build_cpu = CPU_x86;
|
||||||
#elif defined(__x86_64__)
|
#elif defined(__x86_64__)
|
||||||
static const enum target_cpu build_cpu = CPU_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__)
|
#elif defined(__powerpc__)
|
||||||
static const enum target_cpu build_cpu = CPU_POWERPC;
|
static const enum target_cpu build_cpu = CPU_POWERPC;
|
||||||
#elif defined(__arm__)
|
#elif defined(__arm__)
|
||||||
|
|
Loading…
Reference in New Issue