[LLVMdev] Type uint64_t required but not found

Henrik Bach henrik_bach_llvm at hotmail.com
Thu Sep 2 14:15:09 PDT 2004


Hi John,

configure still exits, when checking for uint64_t. I've attached a patch, 
that properly will fix it. Either uint64_t or u_int64_t will succeed:

Index: configure.ac
===================================================================
RCS file: /var/cvs/llvm/llvm/autoconf/configure.ac,v
retrieving revision 1.106
diff -u -r1.106 configure.ac
--- configure.ac	2 Sep 2004 18:44:44 -0000	1.106
+++ configure.ac	2 Sep 2004 20:13:17 -0000
@@ -315,7 +315,7 @@
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_CHECK_TYPES([int64_t],,AC_MSG_ERROR([Type int64_t required but not 
found]))
-AC_CHECK_TYPES([uint64_t],,AC_MSG_ERROR([Type uint64_t required but not 
found]))
+AC_CHECK_TYPES([uint64_t])
AC_CHECK_TYPES([u_int64_t])
AC_HEADER_TIME
AC_STRUCT_TM

_________________________________________________________________
Få alle de nye og sjove ikoner med MSN Messenger http://messenger.msn.dk/
-------------- next part --------------
An embedded and charset-unspecified text was scrubbed...
Name: diff.txt
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20040902/e1cd35c5/attachment.txt>


More information about the llvm-dev mailing list