winemaker: Don't use -march options.

oldstable
André Hentschel 2010-09-19 20:42:44 +02:00 committed by Alexandre Julliard
parent 824ab969ff
commit b7efaf8b6d
1 changed files with 5 additions and 5 deletions

View File

@ -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/) {