Commit 312b7b43 authored by Stephen Kitt's avatar Stephen Kitt Committed by Alexandre Julliard

winegcc: Pass through -march to winebuild.

parent 33c729bb
......@@ -1525,7 +1525,7 @@ int main(int argc, char **argv)
strarray_add(opts.winebuild_args, argv[i]);
raw_linker_arg = 1;
}
else if (strncmp("-mcpu=", argv[i], 6) == 0)
else if (strncmp("-mcpu=", argv[i], 6) == 0 || strncmp("-march=", argv[i], 7) == 0)
strarray_add(opts.winebuild_args, argv[i]);
break;
case '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