Need help installing IPOPT with Intel MKL #441
-
Hello, I'm trying to configure and install IPOPT to use Intel MKL on mac OS X. I have Intel MKL installed in the usual /opt/intel/oneapi/mkl and $MKLROOT is set to /opt/intel/oneapi/mkl/latest. When I run the IPOPT configure script it is successful and it looks like it found the MKL libraries based on these lines of output However when I run Any help is greatly appreciated, thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Probably the library search path in the sudo environment was different from the one of configure, and then it didn't find the MKL lib anymore. |
Beta Was this translation helpful? Give feedback.
Probably the library search path in the sudo environment was different from the one of configure, and then it didn't find the MKL lib anymore.
Normally there should be no need to link the Ipopt lib in the
make install
step, since that should have happened in themake
step, but something I see libtool saying that it relinks the lib. Maybe trysudo -E
.