Message 74474 - Python tracker
On 7 Oct, 2008, at 18:29, Trent Mick wrote: > > Trent Mick <trentm@gmail.com> added the comment: > >> I get: >> >> sizeof(_Bool)=4 bytes >> >> on a G4 PPC. > > Same thing on a G5 PPC: > > $ cat main.c > #include <stdio.h> > > int main(void) { > printf("sizeof(_Bool) is %d\n", sizeof(_Bool)); > } > $ gcc main.c What if you compile using 'gcc -arch ppc64 main.c'? Ronald