winegcc: Support the mingw32 target without an i[3456]86- prefix.

This commit is contained in:
Damjan Jovanovic 2012-06-14 20:36:02 +02:00 committed by Alexandre Julliard
parent 4768b11c24
commit d31f61414c
1 changed files with 19 additions and 10 deletions

View File

@ -1184,20 +1184,29 @@ static void parse_target_option( struct options *opts, const char *target )
/* get the CPU part */
if (!(p = strchr( spec, '-' ))) error( "Invalid target specification '%s'\n", target );
*p++ = 0;
for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
if ((p = strchr( spec, '-' )))
{
if (!strcmp( cpu_names[i].name, spec ))
*p++ = 0;
for (i = 0; i < sizeof(cpu_names)/sizeof(cpu_names[0]); i++)
{
opts->target_cpu = cpu_names[i].cpu;
break;
if (!strcmp( cpu_names[i].name, spec ))
{
opts->target_cpu = cpu_names[i].cpu;
break;
}
}
if (i == sizeof(cpu_names)/sizeof(cpu_names[0]))
error( "Unrecognized CPU '%s'\n", spec );
platform = p;
if ((p = strrchr( p, '-' ))) platform = p + 1;
}
if (i == sizeof(cpu_names)/sizeof(cpu_names[0]))
error( "Unrecognized CPU '%s'\n", spec );
platform = p;
if ((p = strrchr( p, '-' ))) platform = p + 1;
else if (!strcmp( spec, "mingw32" ))
{
opts->target_cpu = CPU_x86;
platform = spec;
}
else
error( "Invalid target specification '%s'\n", target );
/* get the OS part */