-
I trying start gdbstub everything setup porperly but -verbose say Fatal error: "gdbstub: cpuname i386 not found in gdb stub descriptions" but FMTowns have i386 cpu.
Attached verbose log
[verbose_log…
-
We can typically use:
```
$QEMU $QEMU_ARGS -kernel vmlinuz ... -gdb tcp::4445 -S
```
Then:
```
gdb vmlinux -ex "target remote localhost:4445"
```
To debug a guest kernel.
This is more…
-
While most users of `gdbstub` are likely debugging over transport mechanisms that are inherently reliable (i.e: pipes, TCP, emulated serial, etc...), it would be good to nice if `gdbstub` also properl…
-
This is the assertion that fires:
assert(vcpu->gdb_vcpu_state.event.entry_is_active == false);
This is easily reproduced if you startup a container in kubernetes and then manually run the gdb_d…
-
Hello!
I'm have this code:
```
#define NFC_INTERFACE_SPI
#include
#include
#include "PN532.h"
PN532_SPI pn532spi(SPI, 6);
PN532 nfc(pn532spi);
void setup() {
nfc.begin();
}
voi…
-
Did you end up using `gdbstub` in your project?
Or maybe you considered using it, but found some major flaw in the API?
In either case, please leave a comment letting me know what you think of `gd…
-
Debugging via GDB stub is available:
https://github.com/esp8266/Arduino/tree/master/libraries/GDBStub
Would be a killer feature for PlatformIO!
---
Want to back this issue? **[Post a bount…
-
```
What steps will reproduce the problem?
1. ./configure --disable-gcc-ckeck
2. make
3.
What is the expected output? What do you see instead?
Should have worked
Got the error
rm -f gdbstub-xml.c
/…
-
Extracted from a back-and-forth on https://github.com/daniel5151/gdbstub/issues/31#issuecomment-795811837
Will likely tie into #12
* * *
With the current `Arch` architecture, it's actually …
-
It appears something in the length encoding when transferring the `target.xml` file is being miscalculated and generates a `encoded response length 4092 > 4091, truncating` warning:
```
2023-11-02 1…