Bill Allombert on Sun, 04 Sep 2016 21:02:00 +0200 |
[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]
Re: Library on Windows |
On Thu, Aug 25, 2016 at 10:29:03AM +0200, Rafael Guglielmetti wrote: > Dear Bill, > Thank you for your answer. > > When I use the files in the installer, and try to compile on Windows with > MinGW (6.1.0)+MSys I get the following error: > parigen.h:18:14: error: 'long long long' is too long for GCC > Line 18 is: #define long long long Something is wrong because #define long long long is a C preprocessor directive and gcc has no business compiling it. Cheeer, Bill.