winegcc: Remove Alpha support

André Hentschel nerv at dawncrow.de
Tue Apr 19 12:29:16 CDT 2011


---
 tools/winegcc/utils.h   |    2 +-
 tools/winegcc/winegcc.c |    3 ---
 2 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/tools/winegcc/utils.h b/tools/winegcc/utils.h
index 7e124c2..70316c9 100644
--- a/tools/winegcc/utils.h
+++ b/tools/winegcc/utils.h
@@ -37,7 +37,7 @@
 
 enum target_cpu
 {
-    CPU_x86, CPU_x86_64, CPU_SPARC, CPU_ALPHA, CPU_POWERPC, CPU_ARM
+    CPU_x86, CPU_x86_64, CPU_SPARC, CPU_POWERPC, CPU_ARM
 };
 
 enum target_platform
diff --git a/tools/winegcc/winegcc.c b/tools/winegcc/winegcc.c
index 8a22dfe..f135e71 100644
--- a/tools/winegcc/winegcc.c
+++ b/tools/winegcc/winegcc.c
@@ -159,7 +159,6 @@ static const struct
     { "amd64",   CPU_x86_64 },
     { "x86_64",  CPU_x86_64 },
     { "sparc",   CPU_SPARC },
-    { "alpha",   CPU_ALPHA },
     { "powerpc", CPU_POWERPC },
     { "arm",     CPU_ARM }
 };
@@ -219,8 +218,6 @@ static const enum target_cpu build_cpu = CPU_x86;
 static const enum target_cpu build_cpu = CPU_x86_64;
 #elif defined(__sparc__)
 static const enum target_cpu build_cpu = CPU_SPARC;
-#elif defined(__ALPHA__)
-static const enum target_cpu build_cpu = CPU_ALPHA;
 #elif defined(__powerpc__)
 static const enum target_cpu build_cpu = CPU_POWERPC;
 #elif defined(__arm__)
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list