suitesparseconfig.mk.patch 783 B

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