On Tue, Oct 23, 2012 at 11:58 AM, Bill Hart <[email protected]> wrote:
> * (hopefully) fixes an issue with the Intel C Compiler noted by Jeff Gilchrist
It still blows up. Looking at config.log I see:
cclist=gcc icc cc
configure:4996: icc -c conftest.c >&5
conftest.c(2): error: identifier "choke" is undefined
choke me
^
conftest.c(3): error: expected a ";"
compilation aborted for conftest.c (code 2)
and later on I see:
/tmp/icctSIYVT.o: In function `foo':
conftest.c:(.text+0x4b): undefined reference to `__builtin_malloc'
configure:5161: $? = 1
failed program was:
/* The following aborts with gcc-4.3.2 on a 64bit system which is an
unusable compiler */
#if defined(__GNUC__)
int __attribute__((noinline))
foo(int i)
{
int *p = __builtin_malloc (4 * sizeof(int));
*p = 0;
p[i] = 1;
return *p;
}
extern void abort (void);
int main()
{
if (foo(0) != 1)
abort ();
return 0;
}
#else
int main(){return 0;}
#endif
I don't see the INTEL define. Are you sure you copied the modified
file into the new tarball?
Jeff.
--
You received this message because you are subscribed to the Google Groups
"mpir-devel" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/mpir-devel?hl=en.