[9/13] winegcc: Remove SPARC support

André Hentschel nerv at dawncrow.de
Wed Feb 20 14:10:40 CST 2013


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

diff --git a/tools/winegcc/utils.h b/tools/winegcc/utils.h
index a75b3cc..7d20c62 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_POWERPC, CPU_ARM, CPU_ARM64
+    CPU_x86, CPU_x86_64, CPU_POWERPC, CPU_ARM, CPU_ARM64
 };
 
 enum target_platform
diff --git a/tools/winegcc/winegcc.c b/tools/winegcc/winegcc.c
index 7d528e0..06aa200 100644
--- a/tools/winegcc/winegcc.c
+++ b/tools/winegcc/winegcc.c
@@ -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__)
-- 
1.8.0



-- 

Best Regards, André Hentschel


More information about the wine-patches mailing list