-
Notifications
You must be signed in to change notification settings - Fork 4
Crashes with arm64-darwin #135
Comments
Looks like it was due to the strip option breaking code signing. [profile.release]
strip = true |
Good find. We do not strip binaries at Shopify ATM, mostly because it breaks profilers (such as |
From what I can tell, the only way to fix is to re-sign (more info). I tried creating a wrapper for #!/usr/bin/env bash
/opt/osxcross/target/bin/aarch64-apple-darwin-strip $@
codesign -f -s - "${@: -1}" However, the Docker images don't have the |
Edit: Nevermind, think this is specific to the Docker images. Compiling for |
Hey @ianks,
Users are reporting crashes when loading the precompiled extension on
arm64-darwin
with two different projects, and was wondering if you've seen this in any of your projects or had any additional thoughts on how to debug.If not, no worries.
The text was updated successfully, but these errors were encountered: