-
Notifications
You must be signed in to change notification settings - Fork 232
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
libsodium slow build time #302
Comments
Yes I would be willing to review and merge such a patch. |
Thanks for merging. Sorry for the noise, but just wondering when a new release might be done which contains this patch? |
We'll ship this with 1.2.0, which will hopefully be ready in a week or two! |
Brother it is really takeing too much time to install It is showing |
It had taken more then 30min but still installing |
* Doc: add a "Faster wheel build" section in INSTALL.rst Reference: #302 * Update INSTALL.rst * Update INSTALL.rst
Hi,
I am running into an issue where installing pynacl on a raspberry pi or in a multiarch docker container is very slow. By default,
make
(https://github.com/pyca/pynacl/blob/master/setup.py#L163) is run in one thread. Compile times could be reduced substantially (from >10 minutes to 1 minute in testing) by passing-j4
or higher tomake
.Would the maintainers entertain the idea of an environment variable such as
LIBSODIUM_MAKE_ARGS
which could be passed likeLIBSODIUM_MAKE_ARGS=-j4 pip install pynacl
?The text was updated successfully, but these errors were encountered: