Windows

arm-none-eabi-gdb

ARM provides .exe installers for Windows. Grab one from here, and follow the instructions.Just before the installation process finishes tick/select the "Add path to environment variable"option. Then verify that the tools are in your %PATH%:

  1. $ arm-none-eabi-gdb -v
  2. GNU gdb (GNU Tools for Arm Embedded Processors 7-2018-q2-update) 8.1.0.20180315-git
  3. (..)

OpenOCD

There's no official binary release of OpenOCD for Windows but there are unofficial releasesavailable here. Grab the 0.10.x zipfile and extract it somewhere on your drive (Irecommend C:\OpenOCD but with the drive letter that makes sense to you) then update your %PATH%environment variable to include the following path: C:\OpenOCD\bin (or the path that you usedbefore).

Verify that OpenOCD is in your %PATH% with:

  1. $ openocd -v
  2. Open On-Chip Debugger 0.10.0
  3. (..)

QEMU

Grab QEMU from the official website.

You'll also need to install this USB driver or OpenOCD won't work. Follow the installerinstructions and make sure you install the right version (32-bit or 64-bit) of the driver.

That's all! Go to the next section.