On 1/7/06, Neal Norwitz <[EMAIL PROTECTED]> wrote:
> Cool. Thanks for the info. It would be nice if Intel would provide
> Python developers with a permanent icc license for Python. Can anyone
> help with that?
I'll try. A dutch friend from long ago (CWI) is now working for
Intel's compiler grou
On 1/6/06, von Löwis Martin <[EMAIL PROTECTED]> wrote:
> I just found that the intel compiler (icc 9.0)
> also supports compiler warnings for portability
> problems.
Cool. Thanks for the info. It would be nice if Intel would provide
Python developers with a permanent icc license for Python. Can
I just found that the intel compiler (icc 9.0)
also supports compiler warnings for portability
problems.
For the file
#include
int foo(size_t x)
{
return x;
}
it says (with -Wall)
a.c(3): remark #1418: external definition with no prior declaration
int foo(size_t x)
^
a.c(5):