Build Python, Numpy and Scipy source with Visual Studio 6.0 for windows

Richard_Martineau at xyratex.com Richard_Martineau at xyratex.com
Tue Sep 16 05:25:27 EDT 2008


Hello All

I wonder if anyone can advise me or has done similar to the following?

Basically I've downloaded the Python 2.5.2 source code that builds
with Visual Studio 6.0. I've built Python for windows. This was easy
(it even came with the pcbuild.dsw workspace file). Great!

Now comes the troubled bit...I now look for similar source code for
Python extensions Numpy and Scipy but the source code and directories
are not all obvious. Looks like these are normally built via other
compilers. However I need to do all my builds in VS 6.0.

For Numpy (I haven't got as far as Scipy yet) I've organised the
source code into the following projects and lumped them all into my
new workspace numpy.dsw:

dotblas
fft
lib
linalg
multiarray
numarray
random
scalarmath
sort
umath

I'm obviously not sure if this is correct. As you can see from above,
I've re-arranged the source code directory named core into the
following projects:

dotblas
sort
multiarray
scalarmath
umath


Unbelievably I am having some luck and nearly all the projects compile
and link (untested though).
I created the auto-generated files using the python scripts. Then I
included the headers where necessary.

However the remaining problems are:
multiarray (wont compile)
dotblas (wont link)

dotblas seems to have missing dependencies on these:
_cblas_sdot
_cblas_ddot
_cblas_cdotu_sub
_cblas_zdotu_sub
_cblas_cgemm
_cblas_zgemm
_cblas_sgemm
_cblas_dgemm
_cblas_cgemv
_cblas_zgemv
_cblas_sgemv
_cblas_dgemv
_cblas_caxpy
_cblas_saxpy
_cblas_zaxpy
_cblas_daxpy
_cblas_cdotc_sub
_cblas_zdotc_sub

Well that's a snapshot of where I am this morning. What I'm really
after is some advice from anybody who has done similar. I'd really
appreciate hearing from you.

Thanks for your help and very happy to have joined this group


Richard



More information about the Python-list mailing list