You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(e2e): default native_sim/native/64 for Zephyr (avoid -m32 multilib)
First run failed on x86_64 without 32-bit libgcc; Zephyr documents LP64 variant.
Validated: west build + gdbserver -> rsgdb -> gdb batch OK.
Made-with: Cursor
To debug a **real Zephyr app** (still RSP/gdbserver) without QEMU or hardware, build for the **`native_sim`** board: Zephyr links a normal Linux executable (`zephyr.exe`). Flow matches CI: **gdbserver → rsgdb → GDB**.
69
69
70
-
Requires a full [Zephyr west workspace](https://docs.zephyrproject.org/latest/develop/getting_started/index.html) (`ZEPHYR_WORKSPACE` with `.west/` and `zephyr/`). See [native_sim](https://docs.zephyrproject.org/latest/boards/native/native_sim/doc/index.html).
70
+
Requires a full [Zephyr west workspace](https://docs.zephyrproject.org/latest/develop/getting_started/index.html) (`ZEPHYR_WORKSPACE` with `.west/` and `zephyr/`). See [native_sim](https://docs.zephyrproject.org/latest/boards/native/native_sim/doc/index.html). The script builds **`native_sim/native/64`** by default (LP64 host binary); the plain `native_sim` target is 32-bit and needs multilib on x86_64.
0 commit comments