1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-16 14:52:45 +01:00
RIOT/makefiles/tools/gdb.inc.mk

8 lines
243 B
Makefile
Raw Normal View History

# new versions of gdb will support all architectures in one binary
ifeq ($(shell gdb-multiarch -v > /dev/null 2>&1; echo $$?),0)
export GDB ?= gdb-multiarch
else
export GDBPREFIX ?= $(PREFIX)
export GDB ?= $(GDBPREFIX)gdb
endif