-
-
Notifications
You must be signed in to change notification settings - Fork 22
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
Cannot strip ARM binaries #8
Comments
Update: Just got this with the |
Thanks for the report! We probably need to skip strip if a target with a different architecture than the host is specified. Or, I think it is possible to make the strip work on those architectures, but it requires additional dependencies (e.g., on arm-linux-gnueabihf-strip via gcc-arm-linux-gnueabihf, aarch64-linux-gnu-strip via gcc-aarch64-linux-gnu). |
Fixed in v1.1.0. |
I am using this action to cross-compile a CLI application (called
hoard
) for multiple platforms. When compiling for thearmv7-linux-androideabi
target, I got the following error:I am not sure if there is a way to strip these binaries or if stripping should be skipped for them, but either solution would be nice so I can distribute downloads for Android platforms.
The text was updated successfully, but these errors were encountered: