-
Notifications
You must be signed in to change notification settings - Fork 287
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
Sigkill on load #911
Comments
|
+1 to what @Brooooooklyn said about resigning. You can also |
I don't have an M1 mac to test with, but I've been curious if adding an |
Like something here that would essentially say I'm happy to take a crack at it since I can test it. |
Probably something in the |
https://github.com/napi-rs/napi-rs/pull/413/files |
Oh, yea, I remember investigating it previously. Deleting the file in Wherever the final copy is that's loaded, that copy needs to be deleted prior to copying. In addition to the |
This fixes an issue with SIGKILLs during local testing on M1 Macs. See: * neon-bindings/neon#911 * https://stackoverflow.com/questions/65258043/codesigning-modified-binaries-apple-silicon-m1
…cOS code signature cache Resolves #911
Re-opening since this could benefit from some documentation describing the specific errors and messages for users that have the problem outside of |
Awesome to see the fix tho, @kjvalencik . Thanks for that :) |
This fixes an issue with SIGKILLs during local testing on M1 Macs. See: * neon-bindings/neon#911 * https://stackoverflow.com/questions/65258043/codesigning-modified-binaries-apple-silicon-m1
This fixes an issue with SIGKILLs during local testing on M1 Macs. See: * neon-bindings/neon#911 * https://stackoverflow.com/questions/65258043/codesigning-modified-binaries-apple-silicon-m1
This fixes an issue with SIGKILLs during local testing on M1 Macs. See: * neon-bindings/neon#911 * https://stackoverflow.com/questions/65258043/codesigning-modified-binaries-apple-silicon-m1
When loading
index.node
module via anode
repl on an M1 Mac, the process would immediately exit sometimes ( I did not find a good reason for why this occurred sometimes when building a node module ). I found this issue in the nodejs repo, and explicitly code signingindex.node
did in fact allow thenode
process to load the module and interact w/ it successfully.The text was updated successfully, but these errors were encountered: