From 5d296019ff0fd6085fea0838155b0449a4606397 Mon Sep 17 00:00:00 2001 From: Chris Cannam Date: Fri, 26 Apr 2024 17:53:17 +0100 Subject: [PATCH] Add Homebrew paths --- otherbuilds/check.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/otherbuilds/check.sh b/otherbuilds/check.sh index f04a754..cf323df 100755 --- a/otherbuilds/check.sh +++ b/otherbuilds/check.sh @@ -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