Commit dc31d870 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

winemaker: Add often used negative optimization.

parent e1cdd977
......@@ -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?$/) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment