Re: [Cython] Error when using Intel icl compiler on Windows

2011-09-13 Thread Lisandro Dalcin
On 13 September 2011 01:09, Robert Bradshaw wrote: > On Mon, Sep 12, 2011 at 7:19 PM, Lisandro Dalcin wrote: >> On 9 September 2011 05:26, Robert Bradshaw >> wrote: >>> Does it work with icc if you replace >>> >>>  #   define CYTHON_UNUSED __attribute__ ((__unused__)) >>> >>> with >>> >>>  #  

Re: [Cython] Error when using Intel icl compiler on Windows

2011-09-13 Thread David Cournapeau
On Tue, Sep 13, 2011 at 12:31 AM, Vitja Makarov wrote: > 2011/9/13 Robert Bradshaw : >> On Mon, Sep 12, 2011 at 7:19 PM, Lisandro Dalcin wrote: >>> On 9 September 2011 05:26, Robert Bradshaw >>> wrote: Does it work with icc if you replace  #   define CYTHON_UNUSED __attribute__ (

Re: [Cython] Error when using Intel icl compiler on Windows

2011-09-12 Thread Vitja Makarov
2011/9/13 Robert Bradshaw : > On Mon, Sep 12, 2011 at 7:19 PM, Lisandro Dalcin wrote: >> On 9 September 2011 05:26, Robert Bradshaw >> wrote: >>> Does it work with icc if you replace >>> >>>  #   define CYTHON_UNUSED __attribute__ ((__unused__)) >>> >>> with >>> >>>  #   define CYTHON_UNUSED __a

Re: [Cython] Error when using Intel icl compiler on Windows

2011-09-12 Thread Robert Bradshaw
On Mon, Sep 12, 2011 at 7:19 PM, Lisandro Dalcin wrote: > On 9 September 2011 05:26, Robert Bradshaw > wrote: >> Does it work with icc if you replace >> >>  #   define CYTHON_UNUSED __attribute__ ((__unused__)) >> >> with >> >>  #   define CYTHON_UNUSED __attribute__ ((unused)) >> >> ? >> >> >>

Re: [Cython] Error when using Intel icl compiler on Windows

2011-09-12 Thread Lisandro Dalcin
On 9 September 2011 05:26, Robert Bradshaw wrote: > Does it work with icc if you replace > >  #   define CYTHON_UNUSED __attribute__ ((__unused__)) > > with > >  #   define CYTHON_UNUSED __attribute__ ((unused)) > > ? > > > On Fri, Sep 9, 2011 at 12:28 AM, Christoph Gohlke wrote: >> Hello, >> >>

Re: [Cython] Error when using Intel icl compiler on Windows

2011-09-09 Thread Christoph Gohlke
No, sorry. Same error. Christoph On 9/9/2011 1:26 AM, Robert Bradshaw wrote: Does it work with icc if you replace # define CYTHON_UNUSED __attribute__ ((__unused__)) with # define CYTHON_UNUSED __attribute__ ((unused)) ? On Fri, Sep 9, 2011 at 12:28 AM, Christoph Gohlke wrote:

Re: [Cython] Error when using Intel icl compiler on Windows

2011-09-09 Thread Robert Bradshaw
Does it work with icc if you replace # define CYTHON_UNUSED __attribute__ ((__unused__)) with # define CYTHON_UNUSED __attribute__ ((unused)) ? On Fri, Sep 9, 2011 at 12:28 AM, Christoph Gohlke wrote: > Hello, > > compiling Cython 0.15 generated C code on Windows using the Intel Compil

[Cython] Error when using Intel icl compiler on Windows

2011-09-09 Thread Christoph Gohlke
Hello, compiling Cython 0.15 generated C code on Windows using the Intel Compiler 11.1 icl.exe results in an "expected a type specifier" error. For example: /* "numpy.pxd":190 * # experimental exception made for __getbuffer__ and __releasebuffer__ * # -- the details of thi