On Thu, Mar 17, 2016 at 3:35 PM, Marco Atzeri <marco.atz...@gmail.com> wrote: > it seems to prefer gcc headers > > # 1 "/usr/bin/../lib/clang/3.7.1/include/limits.h" 1 3 4 > # 37 "/usr/bin/../lib/clang/3.7.1/include/limits.h" 3 4 > # 1 "/usr/lib/gcc/x86_64-pc-cygwin/5.3.0/include/limits.h" 1 3 4 > # 38 "/usr/bin/../lib/clang/3.7.1/include/limits.h" 2 3 4 > # 17 "/usr/include/sys/dirent.h" 2 3 4
I am looking at clang 3.7 headers on Linux so this might be not 100% same on Cygwin but, clang's limits.h has this on top: /* The system's limits.h may, in turn, try to #include_next GCC's limits.h. Avert this #include_next madness. */ #if defined __GNUC__ && !defined _GCC_LIMITS_H_ #define _GCC_LIMITS_H_ #endif which should prevent including gcc's own limits.h but looks like it doesn't. ismail -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple