diff options
Diffstat (limited to 'math/superlu/files/patch-aa')
-rw-r--r-- | math/superlu/files/patch-aa | 125 |
1 files changed, 41 insertions, 84 deletions
diff --git a/math/superlu/files/patch-aa b/math/superlu/files/patch-aa index 23caa3113a54..ca6dfb50de76 100644 --- a/math/superlu/files/patch-aa +++ b/math/superlu/files/patch-aa @@ -1,84 +1,41 @@ -*** make.inc.orig Sat Nov 22 22:55:01 1997 ---- make.inc Sat Nov 22 23:36:10 1997 -*************** -*** 14,33 **** - # - # The machine (platform) identifier to append to the library names - # -! PLAT = _rs6k - - # - # The name of the libraries to be created/linked to - # - TMGLIB = tmglib$(PLAT).a -! SUPERLULIB = superlu$(PLAT).a -! # -! # If you don't have ESSL, you can use the following blaslib instead: -! # BLASLIB = -lblas -lxlf -lxlf90 -! # which may be slower than ESSL -! # -! BLASDEF = -DUSE_VENDOR_BLAS -! BLASLIB = -lessl - - # - # The archiver and the flag(s) to use when building archive (library) ---- 14,29 ---- - # - # The machine (platform) identifier to append to the library names - # -! #PLAT = - - # - # The name of the libraries to be created/linked to - # - TMGLIB = tmglib$(PLAT).a -! SUPERLULIB = libsuperlu$(PLAT).a -! -! BLASDEF = -DUSE_VENDOR_BLAS -! BLASLIB = $(PREFIX)/lib/libblas$(PLAT).a - - # - # The archiver and the flag(s) to use when building archive (library) -*************** -*** 36,53 **** - ARCH = ar - ARCHFLAGS = cr - RANLIB = ranlib -! -! CC = xlc - CFLAGS = -O3 -! LOADER = xlc -! LOADOPTS = -bmaxdata:0x80000000 - # - # C preprocessor defs for compilation (-DNoChange, -DAdd_, or -DUpCase) - # -! CDEFS = -DNoChange - # - # The directory in which Matlab is installed - # -! MATLAB = /usr/local/matlab - - ---- 32,53 ---- - ARCH = ar - ARCHFLAGS = cr - RANLIB = ranlib -! # -! # Compiler and optimization -! # -! CC = gcc - CFLAGS = -O3 -! LOADER = gcc -! LOADOPTS = -O3 -! - # - # C preprocessor defs for compilation (-DNoChange, -DAdd_, or -DUpCase) - # -! CDEFS = -DAdd_ - # - # The directory in which Matlab is installed - # -! MATLAB = $(PREFIX)/matlab -! - - +--- make.inc.orig Fri Mar 27 07:58:12 1998 ++++ make.inc Mon May 10 01:43:38 1999 +@@ -14,14 +14,14 @@ + # + # The machine (platform) identifier to append to the library names + # +-PLAT = _solaris ++#PLAT = + + # + # The name of the libraries to be created/linked to + # + TMGLIB = tmglib$(PLAT).a +-SUPERLULIB = superlu$(PLAT).a +-BLASLIB = ../blas$(PLAT).a ++SUPERLULIB = libsuperlu$(PLAT).a ++BLASLIB = $(PREFIX)/lib/libblas$(PLAT).a + + # + # The archiver and the flag(s) to use when building archive (library) +@@ -31,10 +31,10 @@ + ARCHFLAGS = cr + RANLIB = ranlib + +-CC = cc +-CFLAGS = -xO3 -xcg92 +-LOADER = cc +-LOADOPTS = -xO3 ++CC = gcc ++CFLAGS = -O3 ++LOADER = gcc ++LOADOPTS = -O3 + + # + # C preprocessor defs for compilation (-DNoChange, -DAdd_, or -DUpCase) +@@ -43,4 +43,4 @@ + # + # The directory in which Matlab is installed + # +-MATLAB = /usr/sww/matlab ++MATLAB = ${PREFIX}/matlab |