Skip to content

Commit

Permalink
revert change to dependency locations
Browse files Browse the repository at this point in the history
@mikaem , I think I have to do this for the macOS runners
  • Loading branch information
MikaelSlevinsky committed May 15, 2024
1 parent 914fc6f commit 6cb51e8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -127,17 +127,17 @@ else
CFLAGS += -I/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/Headers
LDFLAGS += -L/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A
else
CFLAGS += -I/opt/homebrew/opt/openblas/include
LDFLAGS += -L/opt/homebrew/opt/openblas/lib
CFLAGS += -I/usr/local/opt/openblas/include
LDFLAGS += -L/usr/local/opt/openblas/lib
endif
CFLAGS += -I/opt/homebrew/opt/libomp/include
LDFLAGS += -L/opt/homebrew/opt/libomp/lib
CFLAGS += -I/opt/homebrew/opt/fftw/include
LDFLAGS += -L/opt/homebrew/opt/fftw/lib
CFLAGS += -I/opt/homebrew/opt/mpfr/include
LDFLAGS += -L/opt/homebrew/opt/mpfr/lib
CFLAGS += -I/opt/homebrew/opt/gmp/include
LDFLAGS += -L/opt/homebrew/opt/gmp/lib
CFLAGS += -I/usr/local/opt/libomp/include
LDFLAGS += -L/usr/local/opt/libomp/lib
CFLAGS += -I/usr/local/opt/fftw/include
LDFLAGS += -L/usr/local/opt/fftw/lib
CFLAGS += -I/usr/local/opt/mpfr/include
LDFLAGS += -L/usr/local/opt/mpfr/lib
CFLAGS += -I/usr/local/opt/gmp/include
LDFLAGS += -L/usr/local/opt/gmp/lib
else
CFLAGS += -I$(CONDA_PREFIX)/include
LDFLAGS += -L$(CONDA_PREFIX)/lib
Expand Down

1 comment on commit 6cb51e8

@mikaem
Copy link
Collaborator

@mikaem mikaem commented on 6cb51e8 May 15, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Strange, I made this change in the first place because the runners were not finding cblas.h? But now it seems to work:-) See runner.
Aha - you changed back to Mac-13!

Please sign in to comment.