gdb: Add support for ARC-specific gdb

Signed-off-by: Mischa Jonker <mjonker@synopsys.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Mischa Jonker 2013-07-30 11:37:13 +02:00 committed by Thomas Petazzoni
parent 89719fce71
commit 2b0b5859b7
2 changed files with 6 additions and 0 deletions

View File

@ -15,6 +15,7 @@ if BR2_PACKAGE_HOST_GDB
choice
prompt "GDB debugger Version"
depends on !BR2_arc
default BR2_GDB_VERSION_6_6 if BR2_bfin
default BR2_GDB_VERSION_6_7_1_AVR32_2_1_5 if BR2_avr32
default BR2_GDB_VERSION_7_5
@ -57,5 +58,6 @@ config BR2_GDB_VERSION
default "7.3.1" if BR2_GDB_VERSION_7_3
default "7.4.1" if BR2_GDB_VERSION_7_4
default "7.5.1" if BR2_GDB_VERSION_7_5
default "7.5.1-arc" if BR2_arc
endif

View File

@ -21,6 +21,10 @@ GDB_VERSION = 7.5.1
endif
endif
ifeq ($(BR2_arc),y)
GDB_SITE = $(BR2_ARC_SITE)
endif
ifeq ($(GDB_VERSION),6.7.1-avr32-2.1.5)
GDB_SITE = ftp://www.at91.com/pub/buildroot/
endif