-
-
Notifications
You must be signed in to change notification settings - Fork 58
feat: Support Linux ARM64 #2470
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
base: main
Are you sure you want to change the base?
Conversation
|
| Linux64: | ||
| enabled: 0 | ||
| settings: | ||
| CPU: None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ARM64 library disabled for all platforms in meta file
High Severity
The arm64/libsentry.so.meta file has Linux64: enabled: 0 and CPU: None, which prevents the ARM64 library from being included in any Unity build. Comparing to the working x86_64/libsentry.so.meta, it correctly sets enabled: 1 and CPU: x86_64 for Standalone: Linux64. The ARM64 meta file needs similar configuration (likely enabled: 1 with CPU: ARM64) to be included in ARM64 Linux builds. Without this fix, the Linux ARM64 support added by this PR won't work.
Resolves #2466