You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by jx...@apache.org on 2017/12/09 01:16:09 UTC

[incubator-mxnet] branch master updated: Locate liblapack.a in /usr/lib64 (#8073)

This is an automated email from the ASF dual-hosted git repository.

jxie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 84fde4d  Locate liblapack.a in /usr/lib64 (#8073)
84fde4d is described below

commit 84fde4df4a3f84ab88ddaebe6b16161e66d91b22
Author: Kellen Sunderland <ke...@gmail.com>
AuthorDate: Sat Dec 9 01:16:03 2017 +0000

    Locate liblapack.a in /usr/lib64 (#8073)
---
 Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile b/Makefile
index f506257..8584ab6 100644
--- a/Makefile
+++ b/Makefile
@@ -145,6 +145,7 @@ ifeq ($(USE_LAPACK), 1)
 ifeq ($(USE_BLAS),$(filter $(USE_BLAS),blas openblas atlas))
 ifeq (,$(wildcard /lib/liblapack.a))
 ifeq (,$(wildcard /usr/lib/liblapack.a))
+ifeq (,$(wildcard /usr/lib64/liblapack.a))
 ifeq (,$(wildcard $(USE_LAPACK_PATH)/liblapack.a))
 	USE_LAPACK = 0
 endif
@@ -152,6 +153,7 @@ endif
 endif
 endif
 endif
+endif
 
 # lapack settings.
 ifeq ($(USE_LAPACK), 1)

-- 
To stop receiving notification emails like this one, please contact
['"commits@mxnet.apache.org" <co...@mxnet.apache.org>'].