André Hentschel : winemaker: Don't use -march options.

Alexandre Julliard julliard at winehq.org
Mon Sep 20 12:12:20 CDT 2010


Module: wine
Branch: master
Commit: b7efaf8b6d65da512406ed5f3440d7d11a464af8
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=b7efaf8b6d65da512406ed5f3440d7d11a464af8

Author: André Hentschel <nerv at dawncrow.de>
Date:   Sun Sep 19 20:42:44 2010 +0200

winemaker: Don't use -march options.

---

 tools/winemaker |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/tools/winemaker b/tools/winemaker
index 64cf54b..99e60ba 100755
--- a/tools/winemaker
+++ b/tools/winemaker
@@ -691,19 +691,19 @@ sub source_scan_project_file($$$)
                         # this option is always present and is already specified in the suffix rules
                     } elsif (/^GB$/) {
                         # Blend Optimization
-                        $prj_target_cflags.="-march=pentiumpro -D_M_IX86=500 ";
+                        $prj_target_cflags.="-D_M_IX86=500 ";
                     } elsif (/^G6$/) {
                         # Pentium Pro Optimization
-                        $prj_target_cflags.="-march=pentiumpro -D_M_IX86=600 ";
+                        $prj_target_cflags.="-D_M_IX86=600 ";
                     } elsif (/^G5$/) {
                         # Pentium Optimization
-                        $prj_target_cflags.="-march=pentium -D_M_IX86=500 ";
+                        $prj_target_cflags.="-D_M_IX86=500 ";
                     } elsif (/^G3$/) {
                         # 80386 Optimization
-                        $prj_target_cflags.="-march=i386 -D_M_IX86=300 ";
+                        $prj_target_cflags.="-D_M_IX86=300 ";
                     } elsif (/^G4$/) {
                         # 80486 Optimization
-                        $prj_target_cflags.="-march=i486 -D_M_IX86=400 ";
+                        $prj_target_cflags.="-D_M_IX86=400 ";
                     } elsif (/^Yc/) {
                         # Create Precompiled Header
                     } elsif (/^Yu/) {




More information about the wine-cvs mailing list