[LLVMdev] llvm-gcc builds on 32 bit linux broken
Bill Wendling
isanbard at gmail.com
Thu Aug 7 17:59:26 PDT 2008
On Thu, Aug 7, 2008 at 5:46 PM, David Shipman <dshipman at gmail.com> wrote:
> I've just tried building r54494 on 64bit linux and had the same (no
> include path)
> error. Any idea what's happening here?
>
No. :-( Could you try Mike's suggestion? (Replicated here)
Try adding:
#define _GCC_LIMITS_H_
to limitx.h like so:
#ifdef _GCC_NEXT_LIMITS_H
+#define _GCC_LIMITS_H_
#include_next <limits.h>
#undef _GCC_NEXT_LIMITS_H
and then testing. A good test would do a -dM -E and seeing if
everything is still defined and checking the testcase mentioned in the
original email thread.
More information about the llvm-dev
mailing list