diff options
| author | Martin Jansa <Martin.Jansa@gmail.com> | 2011-04-10 13:24:47 +0200 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2011-04-10 14:43:41 +0200 |
| commit | 89500c583e0f1dc1b4ffdf72914e08e505e427e0 (patch) | |
| tree | b073036cc61aa34ca5ac9eec4d617366e0dcb3d5 /meta-oe/recipes-devtools/python/python-numeric | |
| parent | e66079da37992abd54486488aa06a99bf7a4198c (diff) | |
| download | meta-openembedded-89500c583e0f1dc1b4ffdf72914e08e505e427e0.tar.gz | |
recipes,classes: import a lot of recipes from meta-shr
* tested on shr-lite-image for om-gta02 and nokia900 (with meta-shr layer)
Diffstat (limited to 'meta-oe/recipes-devtools/python/python-numeric')
| -rw-r--r-- | meta-oe/recipes-devtools/python/python-numeric/no-lapack.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/python/python-numeric/no-lapack.patch b/meta-oe/recipes-devtools/python/python-numeric/no-lapack.patch new file mode 100644 index 0000000000..c1916b8b9f --- /dev/null +++ b/meta-oe/recipes-devtools/python/python-numeric/no-lapack.patch | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | |||
| 2 | # | ||
| 3 | # Patch managed by http://www.holgerschurig.de/patcher.html | ||
| 4 | # | ||
| 5 | |||
| 6 | --- Numeric-23.7/setup.py~nolapack | ||
| 7 | +++ Numeric-23.7/setup.py | ||
| 8 | @@ -32,7 +32,7 @@ | ||
| 9 | mathlibs = [] | ||
| 10 | |||
| 11 | # delete all but the first one in this list if using your own LAPACK/BLAS | ||
| 12 | -sourcelist = [os.path.join('Src', 'lapack_litemodule.c'), | ||
| 13 | +sourcelist = [ | ||
| 14 | #os.path.join('Src', 'blas_lite.c'), | ||
| 15 | #os.path.join('Src', 'f2c_lite.c'), | ||
| 16 | #os.path.join('Src', 'zlapack_lite.c'), | ||
| 17 | @@ -40,12 +40,12 @@ | ||
| 18 | ] | ||
| 19 | # set these to use your own BLAS; | ||
| 20 | |||
| 21 | -library_dirs_list = ['/usr/lib/atlas'] | ||
| 22 | -libraries_list = ['lapack', 'cblas', 'f77blas', 'atlas', 'g2c'] | ||
| 23 | +library_dirs_list = [] | ||
| 24 | +libraries_list = [] | ||
| 25 | |||
| 26 | # set to true (1), if you also want BLAS optimized matrixmultiply/dot/innerproduct | ||
| 27 | -use_dotblas = 1 | ||
| 28 | -include_dirs = ['/usr/include/atlas'] | ||
| 29 | +use_dotblas = 0 | ||
| 30 | +include_dirs = [] | ||
| 31 | # You may need to set this to find cblas.h | ||
| 32 | # e.g. on UNIX using ATLAS this should be ['/usr/include/atlas'] | ||
| 33 | extra_link_args = [] | ||
