diff options
author | Alois Schlögl <alois.schloegl@ist.ac.at> | 2012-04-19 06:48:22 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2012-05-03 09:47:29 (GMT) |
commit | 1c0c0be5af081bfa8f6f12798f2071fa17c2b6e5 (patch) | |
tree | fcbdd0f4227ba0db5789454309aa3334c81f377f | |
parent | 9555f8f2b66b90c573984afde060dcbd1954813d (diff) | |
download | mxe-1c0c0be5af081bfa8f6f12798f2071fa17c2b6e5.zip mxe-1c0c0be5af081bfa8f6f12798f2071fa17c2b6e5.tar.gz mxe-1c0c0be5af081bfa8f6f12798f2071fa17c2b6e5.tar.bz2 |
package suitesparse: fix compiling 3.7.0
-rw-r--r-- | src/suitesparse-1.patch | 19 | ||||
-rw-r--r-- | src/suitesparse.mk | 2 |
2 files changed, 20 insertions, 1 deletions
diff --git a/src/suitesparse-1.patch b/src/suitesparse-1.patch new file mode 100644 index 0000000..2563084 --- /dev/null +++ b/src/suitesparse-1.patch @@ -0,0 +1,19 @@ +--- SuiteSparse-3.7.0/CHOLMOD/Makefile 2011-12-08 19:56:52.000000000 +0100 ++++ SuiteSparse-3.6.0/CHOLMOD/Makefile 2011-01-25 21:05:49.000000000 +0100 +@@ -13,6 +13,6 @@ + + # Compile the C-callable libraries and the Demo programs. + all: ++ ( cd Lib ; $(MAKE) ) +- ( cd Demo ; $(MAKE) ) + + # Compile the C-callable libraries only. +--- SuiteSparse-3.7.0/UMFPACK/Makefile 2011-12-08 20:57:27.000000000 +0100 ++++ SuiteSparse-3.6.1/UMFPACK/Makefile 2011-01-25 21:07:50.000000000 +0100 +@@ -13,5 +13,5 @@ + # compile all C code (except hb, fortran, and fortran64), including AMD and the + # demos, but not the MATLAB mexFunctions + all: ++ ( cd Lib ; $(MAKE) ) +- ( cd Demo ; $(MAKE) ) + diff --git a/src/suitesparse.mk b/src/suitesparse.mk index 32eb0d1..76b3362 100644 --- a/src/suitesparse.mk +++ b/src/suitesparse.mk @@ -24,7 +24,7 @@ define $(PKG)_BUILD CC='$(TARGET)-gcc' \ CPLUSPLUS='$(TARGET)-g++' \ F77='$(TARGET)-gfortran' \ - AR='$(TARGET)-ar cr' \ + AR='$(TARGET)-ar' \ RANLIB='$(TARGET)-ranlib' \ BLAS='-lblas -lgfortran -lgfortranbegin' \ CHOLMOD_CONFIG='-DNPARTITION' |