Commit 55f803c8 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

makedep: Build implib cross object files with -fno-builtin.

We want to be specific about used function and not want optimizations to interfere. Signed-off-by: 's avatarJacek Caban <jacek@codeweavers.com> Signed-off-by: 's avatarAlexandre Julliard <julliard@winehq.org>
parent 11d90242
......@@ -3093,6 +3093,7 @@ static void output_source_default( struct makefile *make, struct incl_file *sour
output( "\t$(CROSSCC) -c -o $@ %s", source->filename );
output_filenames( defines );
output_filenames( extra_cross_cflags );
if (source->file->flags & FLAG_C_IMPLIB) output_filename( "-fno-builtin" );
output_filenames( cpp_flags );
output_filename( "$(CROSSCFLAGS)" );
output( "\n" );
......
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