Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support default lib paths for m1 macs and MacPorts installations #186

Merged
merged 1 commit into from
Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion fft/_cflags.c.v
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ module fft

#flag linux -I/usr/local/include
#flag linux -L/usr/lib -L/usr/local/lib
#flag darwin -I/usr/local/include
#flag freebsd -I/usr/local/include
#flag freebsd -L/usr/local/lib
#flag openbsd -I/usr/local/include
#flag openbsd -L/usr/local/lib
// Intel, M1 brew, and MacPorts
#flag darwin -I/usr/local/include -I/opt/homebrew/include -L/opt/local/lib
#flag darwin -L/usr/local/lib -L/opt/homebrew/lib -L/opt/local/lib
#flag -I@VMODROOT

#flag @VMODROOT/pocket-fft/f32.o
Expand Down
5 changes: 3 additions & 2 deletions inout/h5/_cflags.c.v
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ module h5

#flag linux -I/usr/include/hdf5/serial/ -I/usr/local/include
#flag linux -L/usr/lib -L/usr/lib/x86_64-linux-gnu/hdf5/serial/ -L/usr/local/lib -pthread
#flag darwin -I/usr/local/include
#flag darwin -L/usr/local/lib
#flag freebsd -I/usr/local/include
#flag freebsd -L/usr/local/lib
#flag openbsd -I/usr/local/include
#flag openbsd -L/usr/local/lib
// Intel, M1 brew, and MacPorts
#flag darwin -I/usr/local/include -I/opt/homebrew/include -L/opt/local/lib
#flag darwin -L/usr/local/lib -L/opt/homebrew/lib -L/opt/local/lib
#flag -I@VMODROOT
#flag -lhdf5 -lhdf5_hl

Expand Down
14 changes: 8 additions & 6 deletions mpi/_cflags.c.v
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ module mpi

#flag linux -I/usr/lib/x86_64-linux-gnu/openmpi/include -I/usr/include/x86_64-linux-gnu/mpi -pthread
#flag linux -pthread -L/usr/lib/x86_64-linux-gnu/openmpi/lib
#flag darwin -I/usr/local/Cellar/open-mpi/4.1.5/include -I/usr/local/include
#flag darwin -L/usr/local/opt/libevent/lib -L/usr/local/Cellar/open-mpi/4.1.5/lib -L/usr/local/lib
#flag freebsd -I/usr/local/Cellar/open-mpi/4.1.5/include -I/usr/local/include
#flag freebsd -L/usr/local/opt/libevent/lib -L/usr/local/Cellar/open-mpi/4.1.5/lib -L/usr/local/lib
#flag openbsd -I/usr/local/Cellar/open-mpi/4.1.5/include -I/usr/local/include
#flag openbsd -L/usr/local/opt/libevent/lib -L/usr/local/Cellar/open-mpi/4.1.5/lib -L/usr/local/lib
#flag freebsd -I/usr/local/include
#flag freebsd -L/usr/local/opt/libevent/lib -L/usr/local/lib
#flag openbsd -I/usr/local/include
#flag openbsd -L/usr/local/opt/libevent/lib -L/usr/local/lib
// Intel, M1 brew, and MacPorts
#flag darwin -I/usr/local/include -I/opt/homebrew/include -I/opt/local/include
#flag darwin -L/usr/local/lib -L/opt/homebrew/lib -L/opt/local/lib
#flag darwin -L/usr/local/opt/libevent/lib -L/opt/homebrew/opt/libevent/lib -L/opt/local/opt/libevent/lib
#flag -I@VMODROOT
#flag -lmpi

Expand Down
7 changes: 4 additions & 3 deletions vlas/cflags_d_cblas.v
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ module vlas
#flag linux -L/usr/local/lib -L/usr/lib
#flag windows -O2
#flag windows -lgfortran
#flag darwin -I/usr/local/opt/openblas/include
#flag darwin -L/usr/local/opt/openblas/lib
#flag darwin -L/usr/local/opt/lapack/lib
// Intel, M1 brew, and MacPorts
#flag darwin -I/usr/local/opt/openblas/include -I/opt/homebrew/opt/openblas/include -I/opt/local/opt/openblas/include
#flag darwin -L/usr/local/opt/openblas/lib -L/opt/homebrew/opt/openblas/lib -L/opt/local/opt/openblas/lib
#flag darwin -L/usr/local/opt/lapack/lib -L/opt/homebrew/opt/lapack/lib -L/opt/local/opt/lapack/lib
#flag -I@VMODROOT
#flag -lopenblas -llapacke

Expand Down
5 changes: 3 additions & 2 deletions vlas/cflags_notd_cblas.v
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@ module vlas
#flag linux -L/usr/local/lib -L/usr/lib
#flag windows -O2
#flag windows -lgfortran
#flag darwin -I/usr/local/opt/lapack/include
#flag darwin -L/usr/local/opt/lapack/lib
// Intel, M1 brew, and MacPorts
#flag darwin -I/usr/local/opt/lapack/include -I/opt/homebrew/opt/lapack/include -I/opt/local/opt/lapack/include
#flag darwin -L/usr/local/opt/lapack/lib -L/opt/homebrew/opt/lapack/lib -L/opt/local/opt/lapack/lib
#flag -I@VMODROOT
#flag -llapacke

Expand Down
Loading