From ce872a322b5d5e94d774e237f5ab4b297a225faf Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Wed, 23 Jan 2002 07:36:04 +0000 Subject: [PATCH] 2002-01-23 Ben Elliston * config.guess (i*86:Linux:*:*): Specifically handle the Intel icc compiler, which doesn't define __ELF__. Submitted by Erik Lindahl . --- ChangeLog | 6 ++++++ config.guess | 6 +++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 8704608..13df57b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-01-23 Ben Elliston + + * config.guess (i*86:Linux:*:*): Specifically handle the Intel icc + compiler, which doesn't define __ELF__. Submitted by Erik Lindahl + . + 2002-01-22 Nicola Pero * config.guess (i*86:Linux:*:*): Fixed: export LANG=C before diff --git a/config.guess b/config.guess index 8fb1519..c2801e9 100755 --- a/config.guess +++ b/config.guess @@ -3,7 +3,7 @@ # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002 Free Software Foundation, Inc. -timestamp='2002-01-22' +timestamp='2002-01-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by @@ -876,8 +876,12 @@ EOF LIBC=gnulibc1 # endif #else + #ifdef __INTEL_COMPILER + LIBC=gnu + #else LIBC=gnuaout #endif + #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep ^LIBC=` rm -f $dummy.c