summaryrefslogtreecommitdiff
path: root/toolchain/gdb/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'toolchain/gdb/Makefile')
-rw-r--r--toolchain/gdb/Makefile7
1 files changed, 6 insertions, 1 deletions
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 $@