I need to cross-compile one of the latest GDB server versions (7.4 or 7.5) for iOS. By default configure script does not support such target (arm-apple-darwin). However, I have an idea to merge Apple's open source version of GDB server (based on…
I am trying to start remote gdb session. Here is what I did so far .
on target m/c.
$ > gdbserver :5555 --attach process_pid
on host from which I need to connect to
$HOST > gdb
gdb > target remote target_ip:5555
gdb >
but after this the I am…
I am using Eclipse CDT with Qt plugin. Working on Debian without X, running the GUI with Qt's QWS server.
Simply, I am starting a regular cpp thread doing the logical work and then starting a standart QApplication execution. Works fine on the target…
I recently downloaded MI library and executed / read some examples code. In all the examples that I saw the implementation was via a separate program like below:
Main Program
Interact with GDB
exec another program
Gather Debug info of the another…
We have a application of size about 20MB in release mode. This application is meant to run on MIPS running Linux 2.6.12 The debug build of the same is about 42 MB, with optimization switched off and -g flag added. The additional 22 MB increase is…
I'm using CDT to remotely debug an application. The application constructs a
source fragment and JITs it into memory. For debugging, it creates an in-memory
ELF/DWARF image and registers it with the GDB JIT interface, and writes a source
file…
i wonder if gdb has some difficulties in supporting tracepoints.
have seen some answers on stack overflow. just mention that "tracepoint facility is currently available only for remote targets."(answered in 2010)
I installed the ST-Link GDB server from the ST webpage (link)
ST created "ST-Link Server" (link) which bridges the architecture gap and enables us to comfortably monitor and debug the "running binary" (arm architecture) on our workstation PC (x86 or…
I am having problems with debugging (stepping over) in C++ with GDB.
I have an in house developed RTOS which runs on a PowerPC e500mc target.
Software versions: GCC 4.9.2, gdb-server 5 ~(I am not sure about the exact version), GDB 7.9.1 (I also…