Re: [Python-Dev] Compiler warnings for 64-bit portability problems

2006-01-07 Thread Guido van Rossum
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

Re: [Python-Dev] Compiler warnings for 64-bit portability problems

2006-01-07 Thread Neal Norwitz
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

[Python-Dev] Compiler warnings for 64-bit portability problems

2006-01-06 Thread von Löwis Martin
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):