-
Notifications
You must be signed in to change notification settings - Fork 48
Known Issues: GNU Toolchain for DWC ARC Processors, v2018.09
Francois Bedard edited this page Nov 14, 2018
·
2 revisions
When debugging user space programs on Linux via GDB, users may notice GDB warning messages indicating "Could not load shared symbols for ." This warning happens when gdbserver is invoked with non-full path for the target binary, for example gdbserver :10000 hello
. Gdbserver works fine with this invocation and resolves the binary location using PATH however the GDB client emits the warning.
There are no negative effects from these messages and debugging works fine.
Start gdbserver with full path to target program, for example gdbserver :10000 /usr/bin/hello
.