Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix lapack detection on Ubuntu 18.04 in Makefile (#17714)
Browse files Browse the repository at this point in the history
  • Loading branch information
leezu authored Feb 28, 2020
1 parent 4f5cd92 commit b6002fd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ ifeq (,$(wildcard /lib/liblapack.a))
ifeq (,$(wildcard /lib/liblapack.so))
ifeq (,$(wildcard /usr/lib/liblapack.a))
ifeq (,$(wildcard /usr/lib/liblapack.so))
ifeq (,$(wildcard /usr/lib/x86_64-linux-gnu/liblapack.a))
ifeq (,$(wildcard /usr/lib/x86_64-linux-gnu/liblapack.so))
ifeq (,$(wildcard /usr/lib/liblapack.dylib))
ifeq (,$(wildcard /usr/lib64/liblapack.a))
ifeq (,$(wildcard /usr/lib64/liblapack.so))
Expand All @@ -240,6 +242,8 @@ endif
endif
endif
endif
endif
endif

# lapack settings.
ifeq ($(USE_LAPACK), 1)
Expand Down

0 comments on commit b6002fd

Please sign in to comment.