Browse Source

Refs #130 Fixed laswp building bug with DYNAMIC_ARCH=1.

tags/v0.2.3^2
Zhang Xianyi 13 years ago
parent
commit
7bd1834d59
2 changed files with 10 additions and 0 deletions
  1. +5
    -0
      lapack/laswp/x86/Makefile
  2. +5
    -0
      lapack/laswp/x86_64/Makefile

+ 5
- 0
lapack/laswp/x86/Makefile View File

@@ -16,6 +16,11 @@ LASWP = ../generic/laswp_k_1.c
ZLASWP = ../generic/zlaswp_k_1.c
endif

ifeq ($(DYNAMIC_ARCH), 1)
LASWP = ../generic/laswp_k_4.c
ZLASWP = ../generic/zlaswp_k_4.c
endif

ifndef LASWP
LASWP = ../generic/laswp_k.c
endif


+ 5
- 0
lapack/laswp/x86_64/Makefile View File

@@ -21,6 +21,11 @@ LASWP = ../generic/laswp_k_1.c
ZLASWP = ../generic/zlaswp_k_1.c
endif

ifeq ($(DYNAMIC_ARCH), 1)
LASWP = ../generic/laswp_k_4.c
ZLASWP = ../generic/zlaswp_k_4.c
endif

ifndef LASWP
LASWP = ../generic/laswp_k.c
endif


Loading…
Cancel
Save