Comment 8 for bug 1598371

Revision history for this message
Cesare Falco (c.falco) wrote :

> ifeq ($(DEB_HOST_ARCH),ppc64)
> PTR64=1

> i didnt set it because ubuntu on ppc is 32bit, kernels only are 64bit.
> and this make issue on libsdl too.

Please note architecture size is a different matter from pointer size.
You're right for the former, whilst pointer size on ppc64 is 8 byte:
http://refspecs.linuxfoundation.org/ELF/ppc64/PPC-elf64abi.html

So setting PTR64=1 is right.