winebuild: Pass the -mcpu option to the C compiler also.

This commit is contained in:
Alexandre Julliard 2013-07-01 12:54:32 +02:00
parent 32184615fa
commit 3dfe94cfbd

View file

@ -381,6 +381,7 @@ struct strarray *get_as_command(void)
strarray_add( args, "-xassembler", "-c", NULL );
if (force_pointer_size)
strarray_add_one( args, (force_pointer_size == 8) ? "-m64" : "-m32" );
if (cpu_option) strarray_add_one( args, strmake("-mcpu=%s", cpu_option) );
return args;
}