Commit 9419eadd authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

wrc: Add PPC64 support.

parent fe723c26
......@@ -328,7 +328,8 @@ static void set_target( const char *target )
if (!(p = strchr( cpu, '-' ))) error( "Invalid target specification '%s'\n", target );
*p = 0;
if (!strcmp( cpu, "amd64" ) || !strcmp( cpu, "x86_64" ) ||
!strcmp( cpu, "ia64" ) || !strcmp( cpu, "aarch64" ))
!strcmp( cpu, "ia64" ) || !strcmp( cpu, "aarch64" ) ||
!strcmp( cpu, "powerpc64" ) || !strcmp( cpu, "powerpc64le" ))
pointer_size = 8;
else
pointer_size = 4;
......
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