rust-raspberrypi-OS-tutorials/TODO.md

23 lines
471 B
Markdown
Raw Normal View History

2018-08-26 11:51:40 +00:00
# TODO
## Add debugging targets to Makefile
sudo apt installl gdb-multiarch
qemu-gdb:
$(DOCKER_CMD) -p 1234:1234 $(UTILS_CONTAINER) $(QEMU_CMD) -s -S
gdb-multiarch kernel8.img -ex "target remote :1234"
set architecture aarch64
symbols-file ??
combine this with rust-gdb?
2018-08-26 18:33:12 +00:00
## Find a way to easily switch betwenn release build and local development
```toml
[patch.crates-io]
cortex-a = { path = "../../cortex-a" }
register = { path = "../../register-rs" }
```