winegcc: Pass -m32/-m64 along to the linker.

This commit is contained in:
Mike Frysinger 2006-01-25 13:15:34 +01:00 committed by Alexandre Julliard
parent 6255936c83
commit ff6b466563
1 changed files with 2 additions and 0 deletions

View File

@ -908,6 +908,8 @@ int main(int argc, char **argv)
opts.gui_app = 0; opts.gui_app = 0;
else if (strcmp("-municode", argv[i]) == 0) else if (strcmp("-municode", argv[i]) == 0)
opts.unicode_app = 1; opts.unicode_app = 1;
else if (strcmp("-m32", argv[i]) == 0 || strcmp("-m64", argv[i]) == 0)
raw_linker_arg = 1;
break; break;
case 'n': case 'n':
if (strcmp("-nostdinc", argv[i]) == 0) if (strcmp("-nostdinc", argv[i]) == 0)