Displaying 3 results from an estimated 3 matches for "_x86_".
Did you mean:
x86_
2010 Apr 02
0
[LLVMdev] ssize_t definition in DataTypes.h
...ssize_t;
#else
typedef _w64 int ssize_t;
#endif
A discussion of "_w64" - http://msdn.microsoft.com/en-us/library/s04b5w00(VS.71).aspx. It's only supported on later versions of Visual Studio, so something like
#if !defined(_W64)
# if !defined(__midl) && (defined(_X86_) || defined(_M_IX86)) && _MSC_VER >= 1300
# define _W64 __w64
# else
# define _W64
# endif
#endif
would be needed.
Regards,
Michael Smith
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100401/d...
2011 Jul 18
2
Problem compiling in extra/xdr
I'm building R 2.13.1 on i686-pc-linux-gnu, using gcc 4.6.1
and with glibc 2.14.
I get this error:
In file included from xdr.c:61:0:
./rpc/types.h:63:14: error: conflicting types for 'malloc'
make[4]: *** [xdr.o] Error 1
I can make the build proceed some by commenting out the
declaration "extern char *malloc();" in xdr/rpc/types.h,
but then I get a slew of other errors:
2011 Jul 18
2
Problem compiling in extra/xdr
I'm building R 2.13.1 on i686-pc-linux-gnu, using gcc 4.6.1
and with glibc 2.14.
I get this error:
In file included from xdr.c:61:0:
./rpc/types.h:63:14: error: conflicting types for 'malloc'
make[4]: *** [xdr.o] Error 1
I can make the build proceed some by commenting out the
declaration "extern char *malloc();" in xdr/rpc/types.h,
but then I get a slew of other errors: