diff --git a/build_graphblas_cffi.py b/build_graphblas_cffi.py index 8d62b39..a4ed01d 100644 --- a/build_graphblas_cffi.py +++ b/build_graphblas_cffi.py @@ -45,6 +45,10 @@ def tree(dir_path: Path, prefix: str=''): # Windows wheels.yml configures suitesparse.sh to install GraphBLAS to "C:\\GraphBLAS". graphblas_root = "C:\\GraphBLAS" if is_win else sys.prefix + #### TEST + if not is_win: + graphblas_root = "/usr/local" + include_dirs = [os.path.join(graphblas_root, "include")] #### TEST for line in tree(Path(include_dirs[0])):