Skip to content

Commit d94e479

Browse files
committed
MAINT: Fixup on macos
1 parent 84c269f commit d94e479

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

make.in

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,14 @@ MAKEDEPEND=g++ -M $(CXXFLAGS)
2121
# Lapack includes and linking
2222

2323
ILAPACK=
24-
LLAPACK=-lopenblas
24+
LLAPACK=
25+
26+
ifeq ($(shell uname -s),Darwin)
27+
LLAPACK=-framework Accelerate
28+
else
29+
LLAPACK=-lopenblas
30+
endif
31+
2532

2633
TBSRC=../libs/
2734
LDFLAGS=-L$(TBSRC) -ltoolbox $(LLAPACK)

0 commit comments

Comments
 (0)