From dbf465f217fc9c3c0886ef94bac68196507dff39 Mon Sep 17 00:00:00 2001 From: Scott Fennell Date: Wed, 15 Dec 2021 12:37:44 -0600 Subject: [PATCH] Add temporary workaround to find udunits on mac to install guide --- docs/documentation/install_guide/Install-Guide.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/documentation/install_guide/Install-Guide.md b/docs/documentation/install_guide/Install-Guide.md index 9b93e430..123a4af3 100644 --- a/docs/documentation/install_guide/Install-Guide.md +++ b/docs/documentation/install_guide/Install-Guide.md @@ -193,10 +193,15 @@ brew install java xquartz llvm@11 swig maven udunits openmotif ``` -IMPORTANT: when doing the configure step in the install trick section, you need to point trick to llvm@11. - +IMPORTANT: when doing the configure step in the install trick section, you need to point trick to llvm@11. It is also possible that the current iteration of our configure script will not be able to find the udunits package, so you may need to point trick to udunits as well. +You can find the path of llvm and udunits by executing the following commands: ``` -./configure --with-llvm=/usr/local/opt/llvm@11 +brew info llvm@11 +brew info udunits +``` +Then enter the path to llvm (and udunits) when you execute the configure command in place of the placeholders: +``` +./configure --with-llvm= --with-udunits= ``` IMPORTANT: Add java and javac from openjdk to your path.