You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.
When changing the build to CMake I added stripping in the wrong place (here). This results in all the object files being stripped which prevents us in using ndk-stack to diagnose crashes easily.
Ideally we'll only strip the resulting libraries in the copy target. We can get the strip command from mason with: echo "set(STRIP_COMMAND \"which $(mason env STRIP)\")" (thanks @kkaefer)
The text was updated successfully, but these errors were encountered:
When changing the build to CMake I added stripping in the wrong place (here). This results in all the object files being stripped which prevents us in using
ndk-stack
to diagnose crashes easily.Ideally we'll only strip the resulting libraries in the copy target. We can get the
strip
command from mason with:echo "set(STRIP_COMMAND \"
which $(mason env STRIP)\")"
(thanks @kkaefer)The text was updated successfully, but these errors were encountered: