mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-15 00:03:39 +08:00
gdb: properly set the gdb site in all cases
Until now, the gdb site for AVR32 was adjusted only when GDB_VERSION was not set, i.e only when the cross-gdb is *not* built. We should in fact also set the site when the cross-gdb is built, so when GDB_VERSION is defined through package/gdb/Config.in.host. So, instead, we now have something like: ifeq ($(GDB_VERSION),) # we define here a default version that is used when the cross-gdb is # not built and only the target gdb is selected. endif ifeq ($(GDB_VERSION),something-special) GDB_SITE = some-special-site-for-some-special-gdb-version endif Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
5dbb403815
commit
eb29c83117
@ -16,12 +16,15 @@ ifeq ($(BR2_bfin),y)
|
|||||||
GDB_VERSION = 6.6a
|
GDB_VERSION = 6.6a
|
||||||
else ifeq ($(BR2_avr32),y)
|
else ifeq ($(BR2_avr32),y)
|
||||||
GDB_VERSION = 6.7.1-avr32-2.1.5
|
GDB_VERSION = 6.7.1-avr32-2.1.5
|
||||||
GDB_SITE = ftp://www.at91.com/pub/buildroot/
|
|
||||||
else
|
else
|
||||||
GDB_VERSION = 7.5.1
|
GDB_VERSION = 7.5.1
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifeq ($(GDB_VERSION),6.7.1-avr32-2.1.5)
|
||||||
|
GDB_SITE = ftp://www.at91.com/pub/buildroot/
|
||||||
|
endif
|
||||||
|
|
||||||
GDB_SOURCE = gdb-$(GDB_VERSION).tar.bz2
|
GDB_SOURCE = gdb-$(GDB_VERSION).tar.bz2
|
||||||
GDB_LICENSE = GPLv2+ LGPLv2+ GPLv3+ LGPLv3+
|
GDB_LICENSE = GPLv2+ LGPLv2+ GPLv3+ LGPLv3+
|
||||||
GDB_LICENSE_FILES = COPYING COPYING.LIB COPYING3 COPYING3.LIB
|
GDB_LICENSE_FILES = COPYING COPYING.LIB COPYING3 COPYING3.LIB
|
||||||
|
Loading…
Reference in New Issue
Block a user