You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Type 'make' to compile MPSolve, and then make install
to install the binaries, the library and the headers
system-wide.
As you can see I have: MATLAB (tm) module: yes
But then we I enter "make" in the terminal I receive the following error regarding gmp.h file.
Making all in matlab
clang: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated [-Wdeprecated]
In file included from /Users/mahradvaghefi/Desktop/mpsolve-3.2.1/examples/matlab/mps_roots_string.c:2:
In file included from /Users/mahradvaghefi/Desktop/mpsolve-3.2.1/examples/matlab/mps_option_parser.h:2:
In file included from ../../include/mps/mps.h:65:
../../include/mps/gmptools.h:18:10: fatal error: 'gmp.h' file not found
#include <gmp.h>
^~~~~~~
1 error generated.
The text was updated successfully, but these errors were encountered:
Make sure to specify the CFLAGS for gmp using GMP_CFLAGS, for instance
./configure GMP_CFLAGS="-I/usr/local/opt/gmp/"
Other CFLAGS are not passed to the MATLAB compiler because it tends to be picky about what it supports. If this does not work (or you did it already), there may be a problem in how the variables are passed to that script, but I cannot reproduced it locally.
I am using MacBook Pro and after entering "./configure" on terminal, I receive the following summary:
MPSolve configuration:
Type 'make' to compile MPSolve, and then make install
to install the binaries, the library and the headers
system-wide.
As you can see I have: MATLAB (tm) module: yes
But then we I enter "make" in the terminal I receive the following error regarding gmp.h file.
Making all in matlab
clang: warning: treating 'c' input as 'c++' when in C++ mode, this behavior is deprecated [-Wdeprecated]
In file included from /Users/mahradvaghefi/Desktop/mpsolve-3.2.1/examples/matlab/mps_roots_string.c:2:
In file included from /Users/mahradvaghefi/Desktop/mpsolve-3.2.1/examples/matlab/mps_option_parser.h:2:
In file included from ../../include/mps/mps.h:65:
../../include/mps/gmptools.h:18:10: fatal error: 'gmp.h' file not found
#include <gmp.h>
^~~~~~~
1 error generated.
The text was updated successfully, but these errors were encountered: