summaryrefslogtreecommitdiff
path: root/package/gdb
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-08-03 21:44:48 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2017-08-03 21:45:14 +0200
commit3f5db15584f7d1d39e29cf71f58530de6ed60dcd (patch)
tree40b4037e86fa55cbc68d4e0abdcc542c574b5fe9 /package/gdb
parent1e378a7ca868e8c75099c3210b18108d12a1708f (diff)
gdb: fix compile, --enable-static is required
Diffstat (limited to 'package/gdb')
-rw-r--r--package/gdb/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/package/gdb/Makefile b/package/gdb/Makefile
index f14045daf..321c8e72e 100644
--- a/package/gdb/Makefile
+++ b/package/gdb/Makefile
@@ -20,7 +20,9 @@ include ${ADK_TOPDIR}/mk/package.mk
$(eval $(call PKG_template,GDB,gdb,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-CONFIGURE_ARGS+= --without-uiout \
+# --enable-static is required to build libbfd.a
+CONFIGURE_ARGS+= --enable-static \
+ --without-uiout \
--disable-tui \
--disable-gdbtk \
--disable-gdbserver \