From eb20ee3416a0c8d0596d5826a19f27709ce5363e Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Thu, 4 Jan 2018 13:13:14 -0500 Subject: [PATCH] fix cblas --- Makefile.cblas | 4 +++- lapack.spec | 5 ++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Makefile.cblas b/Makefile.cblas index 106ad5e..2d1bc1c 100644 --- a/Makefile.cblas +++ b/Makefile.cblas @@ -7,6 +7,8 @@ endif clean: rm -f *.o libcblas.a libcblas.so* +ERRHAND= cblas_globals.o cblas_xerbla.o xerbla.o + SLEV1= cblas_srotg.o cblas_srotmg.o cblas_srot.o cblas_srotm.o \ cblas_sswap.o cblas_sscal.o cblas_scopy.o cblas_saxpy.o \ cblas_sdot.o cblas_sdsdot.o cblas_snrm2.o cblas_sasum.o \ @@ -65,7 +67,7 @@ ZLEV3= cblas_zgemm.o cblas_zsymm.o cblas_zhemm.o cblas_zherk.o \ cblas_zsyr2k.o OBJS= $(SLEV1) $(DLEV1) $(CLEV1) $(ZLEV1) $(SCLEV1) $(SLEV2) $(DLEV2) $(CLEV2) \ - $(ZLEV2) $(SLEV3) $(DLEV3) $(CLEV3) $(ZLEV3) + $(ZLEV2) $(SLEV3) $(DLEV3) $(CLEV3) $(ZLEV3) $(ERRHAND) static: $(OBJS) ifeq "$(SYMBOLPREFIX)" "" diff --git a/lapack.spec b/lapack.spec index 113f785..a633d0f 100644 --- a/lapack.spec +++ b/lapack.spec @@ -10,7 +10,7 @@ Summary: Numerical linear algebra package libraries Name: lapack Version: %{mediumver}.0 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: System Environment/Libraries URL: http://www.netlib.org/lapack/ @@ -540,6 +540,9 @@ sed -i 's|Requires.private: blas|Requires.private: blas64|g' %{buildroot}%{_libd %endif %changelog +* Wed Jan 3 2018 Tom Callaway - 3.8.0-4 +- fix cblas + * Mon Dec 4 2017 Tom Callaway - 3.8.0-3 - build cblas - include pkgconfig files.