fix cblas

This commit is contained in:
Tom Callaway 2018-01-04 13:13:14 -05:00
parent fe1e232c20
commit eb20ee3416
2 changed files with 7 additions and 2 deletions

View File

@ -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)" ""

View File

@ -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 <spot@fedoraproject.org> - 3.8.0-4
- fix cblas
* Mon Dec 4 2017 Tom Callaway <spot@fedoraproject.org> - 3.8.0-3
- build cblas
- include pkgconfig files.