From f83f969bb5f008e1c1265d0e34d1fc600cb9e0e5 Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Sun, 7 Jun 2015 10:35:44 -0500 Subject: disable for non SIM targets --- toolchain/gdb/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'toolchain') diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile index 9728e3815..b3538a75d 100644 --- a/toolchain/gdb/Makefile +++ b/toolchain/gdb/Makefile @@ -9,6 +9,11 @@ include ${ADK_TOPDIR}/mk/buildhlp.mk ifeq (${ADK_MAKE_PARALLEL},y) GDB_MAKEOPTS+= -j${ADK_MAKE_JOBS} endif +ifeq ($(ADK_TARGET_SIM),y) +CONFIGURE_ARGS:= --enable-sim +else +CONFIGURE_ARGS:= --disable-sim +endif $(WRKBUILD)/.headers: $(WRKBUILD)/.configured: @@ -29,12 +34,12 @@ $(WRKBUILD)/.configured: --disable-nls \ --with-curses \ --enable-threads \ - --enable-sim \ --disable-tui \ --disable-werror \ --disable-install-libiberty \ --without-python \ --without-x \ + $(CONFIGURE_ARGS) \ ); touch $@ -- cgit v1.2.3