On 21-11-2007 15:07:04 +0000, Stefan Manegold wrote:
+case "$host-$GCC-$CC-$enableval" in +ia64*-*-*-32) + AC_MSG_ERROR([we do not support 32 bits on $host]);;
So HPUX's 32-bits support on ia64 is not supported :(
+i?86*-*-*-64) + AC_MSG_ERROR([$host does not support 64 bits]);;
So Darwin's multilib compiler (i386-apple-darwin[89]) is assumed not to handle 64-bits code here :(
+*--icc*-32|*--icc*-64) + AC_MSG_ERROR([icc does not support a command line option to switch between 32- & 64-bit compilation; use CC & PATH (instead of --enable-bits=$enableval) to point to the $enableval-bit version of icc]);; +*-*-*-32|*-*-*-64) ;; -*) AC_MSG_ERROR(--enable-bits argument must be either 32 or 64);; +*) + AC_MSG_ERROR(--enable-bits argument must be either 32 or 64);;
Clever one ;)