Re: [Pxlib-devel] Problems compiling pxlib on OS X
Brought to you by:
steinm
From: Kenneth P. <sh...@se...> - 2011-04-13 15:07:50
|
On Thursday, March 31, 2011 10:02 PM +0100 Robert Cambridge <no...@gm...> wrote: > I have no idea what "dereferencing pointer to incomplete type" means, so > even if you could just spare some time to point me in the right direction > that would be amazing :) It means struct lconv (from locale.h) isn't defined, just forward-declared. locale.h isn't getting included by your build system. The rest of the warnings mean that int, long int, and pointers are all different sizes. What are the sizes of those on your system? The first warnings about printf are legitimate bugs: The %X should be changed to %lX. |