winemaker: Add often used negative optimization.

This commit is contained in:
André Hentschel 2009-04-25 16:41:48 +02:00 committed by Alexandre Julliard
parent e1cdd9778f
commit dc31d87082

View file

@ -638,6 +638,9 @@ sub source_scan_project_file($$$)
} elsif (/^Oy$/) {
# Frame-Pointer Omission
$prj_target_cflags.="-fomit-frame-pointer ";
} elsif (/^Oy-$/) {
# Frame-Pointer Omission
$prj_target_cflags.="-fno-omit-frame-pointer ";
} elsif (/^GZ$/) {
# Catch Release-Build Errors in Debug Build
} elsif (/^M[DLT]d?$/) {