mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 06:06:13 +00:00
winegcc: Only add -static-libgcc if -nodefaultlibs weren't given. (Clang).
The flag does nothing if -nodefaultlibs or -nostdlib were given, because the driver does not automatically link to libgcc/compiler-rt in that case. Clang will warn about this, which is annoying, which clutters up the output, and which makes it impossible to use -Werror when building with Clang. Signed-off-by: Chip Davis <cdavis@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
281021d820
commit
9e133a9a22
1 changed files with 2 additions and 1 deletions
|
@ -538,7 +538,8 @@ static struct strarray get_link_args( struct options *opts, const char *output_n
|
|||
strarray_add( &flags, "-Wl,--large-address-aware" );
|
||||
|
||||
/* make sure we don't need a libgcc_s dll on Windows */
|
||||
strarray_add( &flags, "-static-libgcc" );
|
||||
if (!opts->nodefaultlibs && !opts->use_msvcrt)
|
||||
strarray_add( &flags, "-static-libgcc" );
|
||||
|
||||
if (opts->debug_file && strendswith(opts->debug_file, ".pdb"))
|
||||
strarray_add(&link_args, strmake("-Wl,-pdb,%s", opts->debug_file));
|
||||
|
|
Loading…
Reference in a new issue