Commit e0dac25b authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winegcc: Add ARM support.

parent cce3163c
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
enum target_cpu enum target_cpu
{ {
CPU_x86, CPU_x86_64, CPU_SPARC, CPU_ALPHA, CPU_POWERPC CPU_x86, CPU_x86_64, CPU_SPARC, CPU_ALPHA, CPU_POWERPC, CPU_ARM
}; };
enum target_platform enum target_platform
......
...@@ -159,7 +159,8 @@ static const struct ...@@ -159,7 +159,8 @@ static const struct
{ "x86_64", CPU_x86_64 }, { "x86_64", CPU_x86_64 },
{ "sparc", CPU_SPARC }, { "sparc", CPU_SPARC },
{ "alpha", CPU_ALPHA }, { "alpha", CPU_ALPHA },
{ "powerpc", CPU_POWERPC } { "powerpc", CPU_POWERPC },
{ "arm", CPU_ARM }
}; };
static const struct static const struct
...@@ -216,6 +217,8 @@ static const enum target_cpu build_cpu = CPU_SPARC; ...@@ -216,6 +217,8 @@ static const enum target_cpu build_cpu = CPU_SPARC;
static const enum target_cpu build_cpu = CPU_ALPHA; static const enum target_cpu build_cpu = CPU_ALPHA;
#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__)
static const enum target_cpu build_cpu = CPU_ARM;
#else #else
#error Unsupported CPU #error Unsupported CPU
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment