-
Notifications
You must be signed in to change notification settings - Fork 31
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
Improve build process #2
Comments
The build process could use some overhauling in general. For Windows/macOS the library should just be statically linked and not leave any artifacts on the system. |
I agree. can you help ? |
Suggestion: Why not add interactions for installation, then remove the entire I was able to compile and pass all tests without rebuilding the local library (which of course takes a lot less time) Alternatively, add it as a git submodule, with installation instructions |
I saw this method in other libraries. |
Currently the
build.rs
file will re-install pari library each time wecargo build
. This is taking very long time and unnecessary if pari is already installed.Find a way to change
build.rs
to check if pari is already installed and if it does - skip installation.The text was updated successfully, but these errors were encountered: