mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
winemaker: Add often used negative optimization.
This commit is contained in:
parent
e1cdd9778f
commit
dc31d87082
1 changed files with 3 additions and 0 deletions
|
@ -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?$/) {
|
||||
|
|
Loading…
Reference in a new issue