Skip to content

Commit 9e544e9

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

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.github/workflows/ci_basic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
# TODO: Check windows-2022 later, issues linking fmt
14-
os: [ubuntu-22.04, macos-12, macos-14]
13+
# TODO: Check windows-2022 later
14+
os: [ubuntu-22.04, macos-13, macos-14]
1515
steps:
1616
- uses: actions/checkout@v4
1717
- uses: prefix-dev/[email protected]

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)