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

winemaker: Add calling convention flags.

parent c8f41548
...@@ -624,6 +624,13 @@ sub source_scan_project_file($$$) ...@@ -624,6 +624,13 @@ sub source_scan_project_file($$$)
} elsif (/^GX$/) { } elsif (/^GX$/) {
# Enable Exception Handling # Enable Exception Handling
$prj_target_cflags.="-fexceptions "; $prj_target_cflags.="-fexceptions ";
} elsif (/^Gd$/) {
# use cdecl calling convention (default)
} elsif (/^Gr$/) {
# use fastcall calling convention
} elsif (/^Gz$/) {
# use stdcall calling convention
$prj_target_cflags.="-mrtd ";
} elsif (/^Z[d7iI]$/) { } elsif (/^Z[d7iI]$/) {
# Debug Info # Debug Info
$prj_target_cflags.="-g "; $prj_target_cflags.="-g ";
......
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