compiling on Mac OS with GMP and MPFR libraries installed through home-brew #754
Answered
by
tueda
jaborthwick
asked this question in
Q&A
|
Hi, I tried adding things to COMPILEFLAGS or LIBFLAGS but that didn't help. Any help would be appreciated :-) |
Answered by
tueda
Dec 7, 2025
Replies: 1 comment 1 reply
|
As a Homebrew user on Linux, I typically use something like (the exact version is in the gist): ./configure --with-gmp=$(brew --prefix gmp) --with-mpfr=$(brew --prefix mpfr) --with-flint=$(brew --prefix flint) --with-zstd=$(brew --prefix zstd)I hope this works on macOS as well. |
1 reply
Answer selected by
jaborthwick
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As a Homebrew user on Linux, I typically use something like (the exact version is in the gist):
I hope this works on macOS as well.