From 552c41e491f009656ac905301ab759f1df7fc9cf Mon Sep 17 00:00:00 2001 From: "\"Steven J. Hill\"" Date: Wed, 5 Jul 2006 05:12:51 +0000 Subject: Automate the usage of '--disable-gdbmi' to be used only with GDB versions less than 6.4, if they are even used anymore. --- toolchain/gdb/gdb.mk | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'toolchain/gdb/gdb.mk') diff --git a/toolchain/gdb/gdb.mk b/toolchain/gdb/gdb.mk index be3a388f0..6b8a0df6f 100644 --- a/toolchain/gdb/gdb.mk +++ b/toolchain/gdb/gdb.mk @@ -19,10 +19,16 @@ GDB_CAT:=bzcat GDB_DIR:=$(TOOL_BUILD_DIR)/gdb-$(GDB_VERSION) -# NOTE: This option should not be used with newer gdb versions. +# NOTE: This option should not be used with gdb versions 6.4 and above. +ifeq ($(GDB_VERSION),6.2.1) DISABLE_GDBMI:=--disable-gdbmi endif +ifeq ($(GDB_VERSION),6.3) +DISABLE_GDBMI:=--disable-gdbmi +endif +endif + $(DL_DIR)/$(GDB_SOURCE): $(WGET) -P $(DL_DIR) $(GDB_SITE)/$(GDB_SOURCE) -- cgit v1.2.3