mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
winegcc: Force importing msvcrt when using the Unicode hack for a Windows build.
Based on a patch by Alexandre Goujon.
This commit is contained in:
parent
c9abeb3704
commit
561a3e643e
@ -704,7 +704,6 @@ static void build(struct options* opts)
|
||||
{
|
||||
strarray_addall(link_args, get_translator(opts));
|
||||
strarray_add(link_args, opts->gui_app ? "-mwindows" : "-mconsole");
|
||||
if (opts->use_msvcrt) strarray_add(link_args, "-mno-cygwin");
|
||||
if (opts->nodefaultlibs) strarray_add(link_args, "-nodefaultlibs");
|
||||
}
|
||||
|
||||
@ -777,6 +776,7 @@ static void build(struct options* opts)
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (!opts->shared && (opts->use_msvcrt || opts->unicode_app)) strarray_add(link_args, "-lmsvcrt");
|
||||
|
||||
if (res_o_name) compile_resources_to_object( opts, resources, res_o_name );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user