stdlib: Missing backtrace on panic when using std::backtrace::Backtrace
vs backtrace::Backtrace
on Android
#121033
Labels
C-bug
Category: This is a bug.
O-android
Operating system: Android
requires-custom-config
This issue requires custom config/build for rustc in some way
S-needs-repro
Status: This issue has no reproduction and needs a reproduction to make progress.
When compiling standalone binaries for Android with debug information, there seems to be no backtrace information available. However it is possible to get a backtrace when using
backtrace
as external dependency.I am building native binaries for Android devices. I noticed that I could not get a backtrace on
panic
. This is reproducible for me on a physical Samsung Galaxy Tab A9 (aarch64-linux-android
, with Android 13 and Android API 33), on a Pixel 3a emulator (x86_64-linux-android
with Android 14 and Android API 34) as well as on another target device for which I cannot disclose version information.For the rest of the report, I will only provide the instructions for the Samsung Galaxy Tab A9, but the same behavior happened with the emulator and the other Android device.
Meta
Setup
Here is a sample of code for a test binary called
stack_trace
:For linking, I tried two versions.
clang
as part of the latest Android NDK.cross
(apparently-C linker=aarch64-linux-android-gcc
)Building
Issue
When running
RUST_BACKTRACE=1 ./stack_trace
, I would expect to see the backtrace of the panic, telling me which call chain led to the panic.Instead, I see this output (backtrace is missing):
Analysis
You may wonder if the debug symbols got stripped, but they were not:
$ file stack_trace stack_trace: ELF shared object, 64-bit LSB arm64, dynamic (/system/bin/linker64), for Android 33, built by NDK r26c (11394342), not stripped
So after some searching, I stumbled over this comment by @zarik5 so I tried using
backtrace
directly, setting a custom panic hook:If I call this function in
main
and build withcargo
(linking withclang
), I get this output:And if I keep the custom hook and build with
cross
(linking withgcc
), I finally get a usable backtrace:Now you may assume it has something to do with
cross
. But on the third Android device which I tested (for which I cannot disclose further info), we also useclang
for linking with a specific NDK version. There, I also get the "unknown" stack trace when using the default panic hook and a proper one when usingbacktrace
as external dependency - however I do not need to compile withcross
, it also works withcargo
.So unfortunately, I need to include
cross
in the example here to reproduce it, but I have reason to assume that this is not related tocross
and the issue happens the same when linking withclang
. Without a physical device, I was also able to reproduce it in the Android emulator (came as part of Android Studio). Given that I am apparently not the first person missing backtraces on Android I wonder, is a bug in the stdlib's usage ofbacktrace
for Android?The text was updated successfully, but these errors were encountered: