fix: 🐛 Allow executing gdb from cargo-make

It was failing before because no tty was available.
This commit is contained in:
Berkus Decker 2022-05-19 22:22:50 +03:00
parent fc90fde4f0
commit 886cd0a18d
2 changed files with 2 additions and 3 deletions

View File

@ -44,7 +44,7 @@ disabled = true
dependencies = ["build", "kernel-binary", "gdb-config"]
env = { "RUST_GDB" = "${GDB}" }
script = [
"rust-gdb -x ${GDB_CONNECT_FILE} ${CHAINBOOT_ELF}"
"exec < /dev/tty && rust-gdb -x ${GDB_CONNECT_FILE} ${CHAINBOOT_ELF}"
]
[tasks.sdcard]

View File

@ -44,12 +44,11 @@ script = [
'''
]
# Problem: this eats STDIN! need to run in subshell or sth
[tasks.gdb]
dependencies = ["build", "kernel-binary", "gdb-config"]
env = { "RUST_GDB" = "${GDB}" }
script = [
"rust-gdb -x ${GDB_CONNECT_FILE} ${KERNEL_ELF}"
"exec < /dev/tty && rust-gdb -x ${GDB_CONNECT_FILE} ${KERNEL_ELF}"
]
[tasks.gdb-cb]