-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build failure on OSX #2
Comments
Looking over the repo, it appears that the issue is likely with a missing gmp header. However, I'm not sure how to track it down on OSX; AFAICT Homebrew doesn't have a dev version of gmp like pacman and friends. |
Yes, Julia installs GMP libraries but not necessarily GMP headers :( |
Maybe I should just download GMP, unzip it and link to the headers like that. This sounds ugly since it may not be same version as the version of the libraries already installed by Julia but this could also work for Windows... Or maybe I should check how Julia handles the GMP installation and try to do something similar |
It seems that what Julia does is either use GMP from a package manager of build GMP 6.1.0 from scratch (that might be the solution used for Windows). |
I just looked more closely at your error. It seems that you have GMP and the issue is rather that you do not have |
Wow, I could've sworn I tried this before...it's working now (after checking out)! Thanks a bunch. |
I'm trying to
Pkg.build
on OSX with julia v0.4.5, and I'm getting undefined symbol errors from GMP. Any ideas?The text was updated successfully, but these errors were encountered: