Skip to content

Commit

Permalink
Update docs and tests for ARM gdb support
Browse files Browse the repository at this point in the history
Updated docs to now show arm is supported.
Updated the build test to run on aarch

Signed-off-by: Jack Thomson <[email protected]>
  • Loading branch information
JackThomson2 committed Oct 16, 2024
1 parent 20c1e14 commit a27a23c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion docs/gdb-debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Firecracker supports debugging the guest kernel via GDB remote serial protocol.
This allows us to connect GDB to the firecracker process and step through debug
the guest kernel. Currently only debugging on x86 is supported.
the guest kernel.

The GDB feature requires Firecracker to be booted with a config file.

Expand Down
3 changes: 0 additions & 3 deletions tests/integration_tests/build/test_gdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,12 @@

import platform

import pytest

import host_tools.cargo_build as host

MACHINE = platform.machine()
TARGET = "{}-unknown-linux-musl".format(MACHINE)


@pytest.mark.skipif(MACHINE != "x86_64", reason="GDB runs only on x86_64.")
def test_gdb_compiles():
"""Checks that Firecracker compiles with GDB enabled"""

Expand Down

0 comments on commit a27a23c

Please sign in to comment.