2013/10/24 Olivier Grisel <[email protected]>: >>> python setup.py build_ext >>> --include-dirs='/home/myacct/myProg/NumLibs64b/include >>> / -L/home/srojas/myProg/NumLibs64b/lib -llapack -lcblas -lf77blas -latlas' >>> --inplace > > AFAIK you should not use --include-dirs to pass library link > instructions but rather --libraries and --library-dirs.
Indeed, this will pass -L to the compiler but not the linker, and you'll get a mismatch between the BLAS/LAPACK headers and libraries. There are, unfortunately, subtle differences between BLAS implems esp. in terms of return types. ------------------------------------------------------------------------------ October Webinars: Code for Performance Free Intel webinars can help you accelerate application performance. Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from the latest Intel processors and coprocessors. See abstracts and register > http://pubads.g.doubleclick.net/gampad/clk?id=60135991&iu=/4140/ostg.clktrk _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
