Re: [Numpy-discussion] build outside C code with scons within numpy distutils

2008-05-25 Thread Zachary Pincus
Thanks for the tips! This is very helpful. >> Specifically, I have a package that uses numpy and numpy.distutils to >> built itself. Unfortunately, there are some pure-C libraries that I >> call using ctypes, and as these libraries are are not python >> extensions, it is hard to get distutils to

Re: [Numpy-discussion] build outside C code with scons within numpy distutils

2008-05-25 Thread David Cournapeau
On Sun, 2008-05-25 at 11:25 -0400, Zachary Pincus wrote: > Specifically, I have a package that uses numpy and numpy.distutils to > built itself. Unfortunately, there are some pure-C libraries that I > call using ctypes, and as these libraries are are not python > extensions, it is hard to ge

[Numpy-discussion] build outside C code with scons within numpy distutils

2008-05-25 Thread Zachary Pincus
Hello all, I've been following David's work making numpy build with scons with some interest. I have a quick question about how one might use scons/ numpy distutils from an outside project. Specifically, I have a package that uses numpy and numpy.distutils to built itself. Unfortunately, the