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
Attaching the debugging with the supplied command is unfortunately not very helpful (to me):
GNU gdb (Ubuntu 9.2-0ubuntu1~20.04.2) 9.2
Copyright (C) 2020 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "aarch64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
<http://www.gnu.org/software/gdb/documentation/>.
For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from /home/trevor/Projects/Platform/HiveController/.build/aarch64-unknown-linux-gnu/debug/BuildingSimulatorMain...
warning: Section .debug_names in /home/trevor/Projects/Platform/HiveController/.build/aarch64-unknown-linux-gnu/debug/BuildingSimulatorMain length 6132 does not match section length 13340664, ignoring .debug_names.
Dwarf Error: DW_FORM_strx1 found in non-DWO CU [in module /home/trevor/Projects/Platform/HiveController/.build/aarch64-unknown-linux-gnu/debug/BuildingSimulatorMain]
(No debugging symbols found in /home/trevor/Projects/Platform/HiveController/.build/aarch64-unknown-linux-gnu/debug/BuildingSimulatorMain)
Remote debugging using 127.0.0.1:36566
Reading symbols from /lib/ld-linux-aarch64.so.1...
Reading symbols from /usr/lib/debug/.build-id/69/27993b5ea4304ff398d99d28f36476a848ce21.debug...
0x0000ffffbc3fcacc in _start () from /lib/ld-linux-aarch64.so.1
(gdb) bt
#0 0x0000ffffbc3fcacc in _start () from /lib/ld-linux-aarch64.so.1
#1 0x0000ffffb9da2c24 in ?? ()
#2 0x0000aaaad47d1b78 in ?? ()
#3 0x0000ffffbe56d7a0 in ?? ()
#4 0x0000000000004000 in ?? ()
Backtrace stopped: previous frame identical to this frame (corrupt stack?)
This is with a proprietary codebase that I can't share, but I can help track it down if you can give me some pointers.
The text was updated successfully, but these errors were encountered:
Yep that would be it, there is a NVIDIA GPU attached that it is trying to initialise. Minimal repro:
#include<cuda.h>intmain()
{
cuInit(0);
return0;
}
I don't need to debug the CUDA specific code (and certainly nothing that runs on the device), but it would be nice to still use the functionality of rr for the regular host code.
Using rr @ fd232c6
Complete log:
Attaching the debugging with the supplied command is unfortunately not very helpful (to me):
This is with a proprietary codebase that I can't share, but I can help track it down if you can give me some pointers.
The text was updated successfully, but these errors were encountered: