From 48bcfb03483844832e2d3f9d1fe1df74dc019a8c Mon Sep 17 00:00:00 2001 From: Robert McArthur Date: Thu, 13 Nov 2025 13:07:18 +1000 Subject: [PATCH 1/2] MAINT: Now that eigen 5 is released, need to pin to eigen 3 --- build_tools/before_all_mac.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/before_all_mac.sh b/build_tools/before_all_mac.sh index cf789d96..ccdd0891 100755 --- a/build_tools/before_all_mac.sh +++ b/build_tools/before_all_mac.sh @@ -3,7 +3,7 @@ if [ "$GITHUB_ACTIONS" = "true" ]; then brew update fi -brew install llvm eigen boost libomp make +brew install llvm eigen@3 boost libomp make export LDFLAGS="-L$(brew --prefix libomp)/lib" export CPPFLAGS="-I$(brew --prefix libomp)/include" From 7ff48b7e3575ab9c97be64f62ab2415a8c5a5612 Mon Sep 17 00:00:00 2001 From: Robert McArthur Date: Thu, 13 Nov 2025 14:05:34 +1000 Subject: [PATCH 2/2] MAINT: Include eigen include path --- build_tools/before_all_mac.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_tools/before_all_mac.sh b/build_tools/before_all_mac.sh index ccdd0891..158d3f64 100755 --- a/build_tools/before_all_mac.sh +++ b/build_tools/before_all_mac.sh @@ -6,7 +6,7 @@ fi brew install llvm eigen@3 boost libomp make export LDFLAGS="-L$(brew --prefix libomp)/lib" -export CPPFLAGS="-I$(brew --prefix libomp)/include" +export CPPFLAGS="-I$(brew --prefix libomp)/include -I$(brew --prefix eigen@3)/include" export CXXFLAGS="-I$(brew --prefix libomp)/include" bash build_tools/build_iqtree.sh