summaryrefslogtreecommitdiff
path: root/toolchain/gdb
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2015-06-04 04:41:02 -0500
committerWaldemar Brodkorb <wbx@openadk.org>2015-06-04 04:44:52 -0500
commit623680d57c3c8271bd77b01a4808b6ab031886fc (patch)
treea016eafcd4261c8238d40a3f2cb14b8492d0bd97 /toolchain/gdb
parentb92dc96d7f82727329d9e0939748a57b3e6d402e (diff)
add some bits and bytes to allow to choose bfin-sim. not functional, yet
Diffstat (limited to 'toolchain/gdb')
-rw-r--r--toolchain/gdb/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/toolchain/gdb/Makefile b/toolchain/gdb/Makefile
index a617424f1..f311790f0 100644
--- a/toolchain/gdb/Makefile
+++ b/toolchain/gdb/Makefile
@@ -29,7 +29,7 @@ $(WRKBUILD)/.configured:
--disable-nls \
--with-curses \
--enable-threads \
- --disable-sim \
+ --enable-sim \
--disable-tui \
--disable-werror \
--disable-install-libiberty \
@@ -44,6 +44,9 @@ $(WRKBUILD)/.compiled:
$(WRKBUILD)/.installed:
$(INSTALL_BIN) $(WRKBUILD)/gdb/gdb $(TARGET_CROSS)gdb
+ifeq ($(ADK_TARGET_ARCH_BFIN),y)
+ $(INSTALL_BIN) $(WRKBUILD)/sim/bfin/run $(TARGET_CROSS)run
+endif
touch $@
include ${ADK_TOPDIR}/mk/toolchain.mk