suitesparseconfig.mk.patch 833 B

12345678910111213141516171819202122
  1. diff --git a/SuiteSparse_config.mk b/SuiteSparse_config.mk
  2. index db8063c..ee4d467 100644
  3. --- a/SuiteSparse_config.mk
  4. +++ b/SuiteSparse_config.mk
  5. @@ -170,7 +170,6 @@ SUITESPARSE_VERSION = 5.8.1
  6. # It places its shared *.so libraries in SuiteSparse/lib.
  7. # Linux also requires the -lrt library (see below)
  8. LDLIBS ?= -lm
  9. - LDFLAGS += -L$(INSTALL_LIB)
  10. # NOTE: Use of the Intel MKL BLAS is strongly recommended. The OpenBLAS can
  11. # result in severe performance degradation, in CHOLMOD in particular.
  12. @@ -358,7 +357,7 @@ SUITESPARSE_VERSION = 5.8.1
  13. ifeq ($(UNAME),Linux)
  14. # add the realtime library, librt, and SuiteSparse/lib
  15. - LDLIBS += -lrt -Wl,-rpath=$(INSTALL_LIB)
  16. + LDLIBS += -lrt
  17. endif
  18. #---------------------------------------------------------------------------