Hi, we’re looking for the debug symbols or library files that include debug symbols for the system libs included in L4T-base docker container ( more specifically this docker containernvcr.io/nvidia/l4t-base:r32.4.3
). We want to analyse a core dump file using gdb but we’re missing the debugging information on system libraries in this container. Where could we find them?
Extract: ( in gdb)
info sharedlibrary
From To Syms Read Shared Object Library
0x0000007f9e12ee90 0x0000007f9e131f64 Yes () image/lib/aarch64-linux-gnu/librt.so.1
0x0000007f9be43690 0x0000007f9be51a0c Yes () image/lib/aarch64-linux-gnu/libpthread.so.0
0x0000007f9b160910 0x0000007f9b16e4d0 Yes () image/lib/aarch64-linux-gnu/libgcc_s.so.1
0x0000007f9b025380 0x0000007f9b115ba8 Yes () image/lib/aarch64-linux-gnu/libc.so.6
…
Without the debug symbols for those core libraries the core file is hardly useful.
Thanks for your help in advance.