projects
/
scipy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bb65ff2
)
cblas_in_blas
author
Debian Python Team
<team+python@tracker.debian.org>
Mon, 19 Feb 2024 14:53:59 +0000
(15:53 +0100)
committer
Drew Parsons
<dparsons@debian.org>
Mon, 19 Feb 2024 14:53:59 +0000
(15:53 +0100)
===================================================================
Gbp-Pq: Name cblas_in_blas.patch
scipy/meson.build
patch
|
blob
|
history
diff --git
a/scipy/meson.build
b/scipy/meson.build
index 58727b0879b4347c6780f9ef73e50541785b0c81..e8d97a3945ea3b676c87e655081372c0a73594d9 100644
(file)
--- a/
scipy/meson.build
+++ b/
scipy/meson.build
@@
-166,7
+166,10
@@
if blas_name == 'blas'
# In the future, this should be done automatically for:
# `dependency('blas', modules: cblas)`
# see https://github.com/mesonbuild/meson/pull/10921.
- cblas = dependency('cblas')
+ #cblas = dependency('cblas')
+ # But in the Debian builds cblas symbols are contained in libblas.so
+ # so we don't want to depend on a separate cblas.
+ cblas = []
else
cblas = []
endif