aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorGertjan van den Burg <gertjanvandenburg@gmail.com>2020-03-06 14:40:25 +0000
committerGertjan van den Burg <gertjanvandenburg@gmail.com>2020-03-06 14:40:25 +0000
commit2b3a17ed64009ddbc6b495ee948fe5b32bf83d90 (patch)
tree756f1bff5bcec7f5213d549b5dfa657b357bb82e /setup.py
parentCorrect use of os.path.split (diff)
downloadpygensvm-2b3a17ed64009ddbc6b495ee948fe5b32bf83d90.tar.gz
pygensvm-2b3a17ed64009ddbc6b495ee948fe5b32bf83d90.zip
Debugging macos build
-I/.. is provided but still cblas.h is not found.
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index ce66bfe..344b056 100644
--- a/setup.py
+++ b/setup.py
@@ -175,6 +175,10 @@ def _skl_get_blas_info():
base = os.path.split(libdir)[0]
blas_info["include_dirs"] = os.path.join(base, "include")
+ if on_cibw_mac():
+ # debugging
+ print(os.listdir('/System/Library/Frameworks/vecLib.framework/Headers'))
+
print("\n\n*** blas_info: \n%r\n\n ***\n\n" % blas_info)
print(
"\n\n*** os.environ.get('OPENBLAS') = %r ***\n\n"