Skip to content

Commit 6ee9c7e

Browse files
SuiteSparse v5.5.0
1 parent 62d1da9 commit 6ee9c7e

File tree

1,508 files changed

+105075
-137621
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,508 files changed

+105075
-137621
lines changed

CHOLMOD/MATLAB/cholmod_make.m

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,10 @@ function cholmod_make (metis_path)
8080
if (pc)
8181
if (verLessThan ('matlab', '7.5'))
8282
lapack = 'libmwlapack.lib' ;
83-
else
83+
elseif (verLessThan ('matlab', '9.5'))
8484
lapack = 'libmwlapack.lib libmwblas.lib' ;
85+
else
86+
lapack = '-lmwlapack -lmwblas' ;
8587
end
8688
else
8789
if (verLessThan ('matlab', '7.5'))

CHOLMOD/Tcov/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ T = $(TCOV_TMP)/CHOLMOD_TCOV_TMP
1919

2020
# Tcov requires gcc
2121
CC = gcc
22-
BLAS = -lrefblas -lgfortran
23-
LAPACK = -llapack
22+
# BLAS = -lrefblas -lgfortran
23+
# LAPACK = -llapack
2424

2525
# to test Tcov without METIS, but with CAMD, CCOLAMD, and CSYMAMD:
2626
# C = $(CC) $(CF) $(CHOLMOD_CONFIG) $(NANTESTS) -DNPARTITION

0 commit comments

Comments
 (0)