Skip to content

Commit

Permalink
matlab comments
Browse files Browse the repository at this point in the history
  • Loading branch information
DrTimothyAldenDavis committed Jun 16, 2023
1 parent 27d34c0 commit 6871264
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions GraphBLAS/Config/GB_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,12 @@

// GB_C_LIBRARIES: libraries to link with when using direct compile/link:
#ifndef GB_C_LIBRARIES
#define GB_C_LIBRARIES " -lm -ldl /usr/lib/gcc/x86_64-linux-gnu/7/libgomp.so /usr/lib/x86_64-linux-gnu/libpthread.so"
#define GB_C_LIBRARIES " -lm -ldl /usr/lib/gcc/x86_64-linux-gnu/9/libgomp.so /usr/lib/x86_64-linux-gnu/libpthread.so"
#endif

// GB_CMAKE_LIBRARIES: libraries to link with when using cmake
#ifndef GB_CMAKE_LIBRARIES
#define GB_CMAKE_LIBRARIES "m;dl;/usr/lib/gcc/x86_64-linux-gnu/7/libgomp.so;/usr/lib/x86_64-linux-gnu/libpthread.so"
#define GB_CMAKE_LIBRARIES "m;dl;/usr/lib/gcc/x86_64-linux-gnu/9/libgomp.so;/usr/lib/x86_64-linux-gnu/libpthread.so"
#endif

#endif
Expand Down
2 changes: 1 addition & 1 deletion GraphBLAS/GraphBLAS/Config/GB_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

// GB_C_COMPILER: the C compiler used to compile GraphBLAS:
#ifndef GB_C_COMPILER
#define GB_C_COMPILER "/usr/bin/gcc"
#define GB_C_COMPILER "/usr/bin/cc"
#endif

// GB_C_FLAGS: the C compiler flags used to compile GraphBLAS. Used
Expand Down
9 changes: 5 additions & 4 deletions SuiteSparse_install.m
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@ function SuiteSparse_install (do_demo)
% Before using SuiteSparse_install, you must compile the GraphBLAS library for
% use in MATLAB. In the system shell while in the SuiteSparse folder, type
% "make gbmatlab". You must then either install the libgraphblas_matlab.so
% library system-wide ( cd GraphBLAS/GraphBLAS ; sudo make install), or install
% your own copy ( make gblocal ) and then add the SuiteSparse/lib folder to
% your LD_LIBRARY_PATH. Restart MATLAB after compiling libgraphblas_matlab.so.
% library system-wide ( cd GraphBLAS/GraphBLAS ; make ; sudo make install), or
% install % your own copy ( make local ; make install ) and then add the
% SuiteSparse/lib folder to your LD_LIBRARY_PATH. Restart MATLAB after
% compiling libgraphblas_matlab.so.
%
% Copyright (c) 1990-2022, Timothy A. Davis, http://suitesparse.com.
% Copyright (c) 1990-2023, Timothy A. Davis, http://suitesparse.com.
%
% In collaboration with (in alphabetical order): Patrick Amestoy, David
% Bateman, Jinhao Chen, Yanqing Chen, Iain Duff, Les Foster, John Gilbert,
Expand Down

0 comments on commit 6871264

Please sign in to comment.