Installing IPOPT on M1 mac Issue with HSL #554
-
Hello, I'm trying to install IPOPT on an M1 mac and I'm running into problems running the
The relevant piece from
Running the steps in the IPOPT installation instructions for HSL I don't see any error output. I have tried running both configure scripts with the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You'll have to look into the build of the HSL library. Maybe the Fortran compiler defaults to build for macOS-x86_64 and some extra flags need to be given ( |
Beta Was this translation helpful? Give feedback.
-
Thanks for the prompt reply! I was able to get it working with coinbrew. The command I used was I did have a problem with my metis installation from homebrew though. I needed to install it using an x86 installation of homebrew. The instructions for getting this version of homebrew I found on stackoverflow. |
Beta Was this translation helpful? Give feedback.
Thanks for the prompt reply! I was able to get it working with coinbrew. The command I used was
arch -x86_64 ./coinbrew build Ipopt --prefix /usr/local --test --no-prompt --verbosity=3 CC=gcc-11 CXX=g++-11
.I did have a problem with my metis installation from homebrew though. I needed to install it using an x86 installation of homebrew. The instructions for getting this version of homebrew I found on stackoverflow.