wrc: Add PPC64 support.

Signed-off-by: André Hentschel <nerv@dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
André Hentschel 2021-01-31 18:34:16 +01:00 committed by Alexandre Julliard
parent fe723c2673
commit 9419eadd04
1 changed files with 2 additions and 1 deletions

View File

@ -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;