Re: [HACKERS] problem with compiling beta3 on mingw32+WinXP

2011-07-26 Thread pasman pasmański
After reinstalling mingw is ok. 2011/7/25, pasman pasmański : > After googling i found that mingw's gcc works with 64 bit integers. > But printf is incompatible :( . Possible workaround: include > inttypes.h , define macros and convert printf strings: > > printf("%" LL,(long long)100) > >

Re: [HACKERS] problem with compiling beta3 on mingw32+WinXP

2011-07-25 Thread Andrew Dunstan
On 07/25/2011 02:56 PM, pasman pasmański wrote: After googling i found that mingw's gcc works with 64 bit integers. But printf is incompatible :( . Possible workaround: include inttypes.h , define macros and convert printf strings: printf("%" LL,(long long)100) Postgres builds under

Re: [HACKERS] problem with compiling beta3 on mingw32+WinXP

2011-07-25 Thread pasman pasmański
After googling i found that mingw's gcc works with 64 bit integers. But printf is incompatible :( . Possible workaround: include inttypes.h , define macros and convert printf strings: printf("%" LL,(long long)100) 2011/7/25, pasman pasmański : > Hi. > > When i try to compile postgresql-be