diff options
author | Zhang Xianyi <xianyi@iscas.ac.cn> | 2012-08-09 20:36:18 +0800 |
---|---|---|
committer | Zhang Xianyi <xianyi@iscas.ac.cn> | 2012-08-09 20:36:29 +0800 |
commit | 7bd1834d592e6d9bc0c6cc17d1d7571f63231a93 (patch) | |
tree | 3c8dd5d7b09944ffdaa35e4efdbbccbe2be4f275 /lapack | |
parent | 1b056c532860a1cec7294dc98d199b181cd6e894 (diff) | |
download | openblas-7bd1834d592e6d9bc0c6cc17d1d7571f63231a93.tar.gz openblas-7bd1834d592e6d9bc0c6cc17d1d7571f63231a93.tar.bz2 openblas-7bd1834d592e6d9bc0c6cc17d1d7571f63231a93.zip |
Refs #130 Fixed laswp building bug with DYNAMIC_ARCH=1.
Diffstat (limited to 'lapack')
-rw-r--r-- | lapack/laswp/x86/Makefile | 5 | ||||
-rw-r--r-- | lapack/laswp/x86_64/Makefile | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lapack/laswp/x86/Makefile b/lapack/laswp/x86/Makefile index 2e9db4052..434c82a84 100644 --- a/lapack/laswp/x86/Makefile +++ b/lapack/laswp/x86/Makefile @@ -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 diff --git a/lapack/laswp/x86_64/Makefile b/lapack/laswp/x86_64/Makefile index 17fb1f961..e6dae5344 100644 --- a/lapack/laswp/x86_64/Makefile +++ b/lapack/laswp/x86_64/Makefile @@ -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 |