Hi,
I have been receiving daily emails about linbox and sagemath broken,
but am kind busy lately. I just checked it out, and the root problem
appears to be fflas-ffpack that needs fixing first, then linbox and then
rebuild sagemath.
$ fflas-ffpack-config --libs
-lgmpxx -lgmp -lgivaro -L/usr/lib64/atlas -lcblas -latlas
-L/usr/lib64/atlas -llapack
and in fflas-ffpack.spec:
%configure --docdir=%{_docdir}/fflas-ffpack-%{version} --disable-static \
--enable-optimization --enable-doc --with-cblas=%{_libdir}/atlas \
--with-lapack=%{_libdir}/atlas
so, now the correction is to change the above to:
%configure --docdir=%{_docdir}/fflas-ffpack-%{version} --disable-static \
--enable-optimization --enable-doc --with-blas="-L%{_libdir}/atlas -lsatlas" \
--with-lapack="-L%{_libdir}/atlas -lsatlas"
Or am I missing something?
Thanks,
Paulo