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

winegcc: Enable dynamic base by default.

parent ec3de128
......@@ -409,6 +409,8 @@ static struct strarray get_link_args( struct options *opts, const char *output_n
strarray_add( &flags, "-Wl,--exclude-all-symbols" );
strarray_add( &flags, "-Wl,--nxcompat" );
strarray_add( &flags, "-Wl,--dynamicbase" );
strarray_add( &flags, "-Wl,--disable-auto-image-base" );
if (opts->image_base) strarray_add( &flags, strmake("-Wl,--image-base,%s", opts->image_base ));
......
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