-
Notifications
You must be signed in to change notification settings - Fork 262
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
Run testbinary after install and fallback to build if it fails #309
Comments
This was referenced Jul 9, 2017
Closed
You can do this by putting this in your package.json: "scripts": {
"install": "node-pre-gyp install testbinary --fallback-to-build"
}, refs #297 |
I tried that
|
@agathver See: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Sometimes, the pre-built binaries are ABI incompatible with host packages.
node-pre-gyp
reports a successful install andnode
subsequently segfaults. (kelektiv/node.bcrypt.js#528)This case is becoming quite common: People are wanting to install pre-built binaries in systems using
musl libc
, while we only provide binaries linked againstglibc
. We want to fall-back to source compile in this case.The text was updated successfully, but these errors were encountered: