Rob Lahaye <[EMAIL PROTECTED]> writes:

| All I can find, is this in /usr/include/machine/ansi.h:
>
|    #ifdef __GNUC__
|    typedef int __attribute__((__mode__(__DI__)))            __int64_t;
|    typedef unsigned int __attribute__((__mode__(__DI__)))  __uint64_t;
|    #else
|    /* LONGLONG */
|    typedef long long                                        __int64_t;
|    /* LONGLONG */
|    typedef unsigned long long                              __uint64_t;
|    #endif
>
| There are many other typedefs here (without the #ifdef construct), for example:
|    typedef __signed char              __int8_t;
|    typedef unsigned char             __uint8_t;
|    typedef short                     __int16_t;
|    typedef unsigned short           __uint16_t;
|    typedef int                       __int32_t;
|    typedef unsigned int             __uint32_t;
|    typedef int                      __intptr_t;
|    typedef unsigned int            __uintptr_t;
>
>
| Does that ring a bell?

Unfortunately not.

We should perhaps try to find a reduced testcase that also fails.

---
#include <boost/cstdint.hpp>

int main() 
{
}
---

Is that enouthg to trigger it?

put the file in a lyx topdir and compile with g++ -W -Wall -Iboost -c
-o test.o test.C

-- 
        Lgb

Reply via email to