Dan Green

Results 15 comments of Dan Green

Ah, one more thing, I realized I overlooked an error message earlier. When I connect to the tmux session, I see this: ``` GNU gdb (GNU Arm Embedded Toolchain 10-2020-q4-major)...

Ah, yes I think this is the issue: ``` (gdb) python print(sys.version) 2.7.18 (default, Oct 2 2021, 04:20:39) [GCC Apple LLVM 13.0.0 (clang-1300.0.29.1) [+internal-os, ptrauth-isa=deploymen ``` ``` arm-none-eabi-gdb-py --config macos-compatibility...

> Yes but GDB distributions are usually coming with Python3. Do you use a GDB from ARM? Yes, from here: https://developer.arm.com/tools-and-software/open-source-software/developer-tools/gnu-toolchain/gnu-rm/downloads I see there's a later release (October 2021, I...

Aha! I downloaded a version compiled with Python 3 support from here: https://github.com/xpack-dev-tools/arm-none-eabi-gcc-xpack/releases/tag/v10.3.1-2.2 And the gdb-frontend web page opens up! I can confirm it uses python 3: ``` (gdb) python...

First error happens when I set the target: ``` (gdb) target extended-remote 127.0.0.1:2331 Remote debugging using 127.0.0.1:2331 Python Exception 'gdb.Inferior' object has no attribute 'inferior' ``` Next set of errors...

> You can just ignore value errors. I will make it to handle and visualize all kinds of C++ objects but I have yet to do something for them. For...

Here is part of one library used in the project where I was getting a lot of errors: https://github.com/4ms/stm32mp1-baremetal/tree/master/examples/audio_processor/lib/mdrivlib Unfortunately I can't share the entire project, but this library contains...

Yes, just those warnings like I posted a few comments back: `serializable["value"]... gdb.error: value of type...` and `gdb.error: No type ...` etc. I'm still on the macos-compatible branch, btw.

Ah, ok. I just pulled `master`, checked it has the above commit. When I run gdbfrontend I get this immediately (no web browser opens): ``` File "", line 1, in...