Fixed #35 a build bug with NO_LAPACK=1 DYNAMIC_ARCH=1 FC=gfortran. I forgot to test it with gfortran in last bug fixed commit.
This commit is contained in:
parent
8d50a9fd1a
commit
b3d1887745
|
@ -203,7 +203,11 @@ gotoblas_t TABLE_NAME = {
|
|||
#endif
|
||||
qsymm_outcopyTS, qsymm_oltcopyTS,
|
||||
|
||||
#ifndef NO_LAPACK
|
||||
qneg_tcopyTS, qlaswp_ncopyTS,
|
||||
#else
|
||||
NULL, NULL,
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
@ -482,7 +486,11 @@ gotoblas_t TABLE_NAME = {
|
|||
xhemm3m_oucopyrTS, xhemm3m_olcopyrTS,
|
||||
xhemm3m_oucopyiTS, xhemm3m_olcopyiTS,
|
||||
|
||||
#ifndef NO_LAPACK
|
||||
xneg_tcopyTS, xlaswp_ncopyTS,
|
||||
#else
|
||||
NULL, NULL,
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in New Issue