Commit 3dfe94cf authored by Alexandre Julliard's avatar Alexandre Julliard

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

parent 32184615
......@@ -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;
}
......
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