winegcc: Pass -m32/-m64 along to the linker.
This commit is contained in:
parent
6255936c83
commit
ff6b466563
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue