Browse Source

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.

tags/v0.1alpha2^2
Xianyi Zhang 14 years ago
parent
commit
b3d1887745
1 changed files with 8 additions and 0 deletions
  1. +8
    -0
      kernel/setparam-ref.c

+ 8
- 0
kernel/setparam-ref.c View File

@@ -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…
Cancel
Save