[Cython] Improving compile times for Cython extensions with C sources

2013-09-16 Thread Wes McKinney
I haven't been able to find an easy answer to this question, but here is my problem: Cython file: extension.pyx Declarations / C imports: extension.pxd C dependencies: a.c b.c c.c These are all compiled together to produce extension.so. The problem is, when I modify extension.pyx, all 4 C files

Re: [Cython] Improving compile times for Cython extensions with C sources

2013-09-16 Thread Robert Bradshaw
On Mon, Sep 16, 2013 at 11:48 AM, Wes McKinney wrote: > I haven't been able to find an easy answer to this question, but here is my > problem: > > Cython file: extension.pyx > Declarations / C imports: extension.pxd > C dependencies: > a.c > b.c > c.c > > These are all compiled together to produce