Commit 0d175fe8 authored by Alexandre Julliard's avatar Alexandre Julliard

winegcc: Use -static-libgcc for the Windows build.

parent 170bd8f3
......@@ -455,6 +455,9 @@ static strarray *get_link_args( struct options *opts, const char *output_name )
if (opts->large_address_aware && opts->target_cpu == CPU_x86)
strarray_add( flags, "-Wl,--large-address-aware" );
/* make sure we don't need a libgcc_s dll on Windows */
strarray_add( flags, "-static-libgcc" );
return flags;
default:
......
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