@@ -48,23 +48,19 @@ def tree(dir_path: Path, prefix: str=''):
48
48
# Windows wheels.yml configures suitesparse.sh to install GraphBLAS to "C:\\GraphBLAS".
49
49
graphblas_root = "C:\\ GraphBLAS" if is_win else sys .prefix
50
50
51
- #### TEST
52
- if not is_win :
53
- graphblas_root = "/usr/local"
54
-
55
51
include_dirs = [os .path .join (graphblas_root , "include" )]
56
52
#### TEST
57
- for line in tree (Path (include_dirs [ 0 ] )):
53
+ for line in tree (Path (graphblas_root )):
58
54
print (line )
59
55
#### TEST
60
56
include_dirs .append (os .path .join (graphblas_root , "include" , "suitesparse" ))
61
- library_dirs = [os .path .join (graphblas_root , "lib" )]
57
+ library_dirs = [os .path .join (graphblas_root , "lib" ), os . path . join ( graphblas_root , "lib64" ) ]
62
58
if is_win :
63
59
include_dirs .append (os .path .join (sys .prefix , "Library" , "include" ))
64
- include_dirs .append (os .path .join (sys .prefix , "Library" , "include" , "suitesparse" ))
60
+ # include_dirs.append(os.path.join(sys.prefix, "Library", "include", "suitesparse"))
65
61
library_dirs .append (os .path .join (sys .prefix , "Library" , "lib" ))
66
62
67
- include_dirs .append (os .path .join (graphblas_root , "include" ))
63
+ # include_dirs.append(os.path.join(graphblas_root, "include"))
68
64
include_dirs .append (os .path .join (graphblas_root , "include" , "suitesparse" ))
69
65
library_dirs .append (os .path .join (graphblas_root , "lib" ))
70
66
library_dirs .append (os .path .join (graphblas_root , "bin" ))
0 commit comments