Skip to content

Commit

Permalink
Add Homebrew paths
Browse files Browse the repository at this point in the history
  • Loading branch information
cannam committed Apr 26, 2024
1 parent 50f0c0c commit 5d29601
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions otherbuilds/check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ else
make -f otherbuilds/Makefile.macos

echo " *** Linking against static library"
c++ -std=c++11 main/main.cpp lib/librubberband.a -I. -Isrc -o test_static -lsndfile -framework Accelerate
c++ -std=c++11 main/main.cpp lib/librubberband.a -I. -Isrc -o test_static -I/opt/homebrew/include -L/opt/homebrew/lib -lsndfile -framework Accelerate

echo " *** Running build from macOS-specific Makefile"
./test_static -V

echo " *** Building with single-file source"
c++ -O3 -std=c++11 main/main.cpp single/RubberBandSingle.cpp -o test_single -lsndfile -framework Accelerate
c++ -O3 -std=c++11 main/main.cpp single/RubberBandSingle.cpp -o test_single -I/opt/homebrew/include -L/opt/homebrew/lib -lsndfile -framework Accelerate

echo " *** Running build from single-file source"
./test_single -V
Expand Down

0 comments on commit 5d29601

Please sign in to comment.