Skip to content

Commit 90568e2

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

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/ci_basic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
fail-fast: false
1212
matrix:
1313
# TODO: Check windows-2022 later, issues linking fmt
14-
os: [ubuntu-22.04, macos-12, macos-14]
14+
os: [ubuntu-22.04, macos-13, macos-14]
1515
steps:
1616
- uses: actions/checkout@v4
1717
- uses: prefix-dev/setup-pixi@v0.8.10

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)