diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-09-05 07:44:59 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-09-05 07:44:59 +0200 |
commit | bf80fd6d0cab4d9f4babb99f92eee47b19dcbd42 (patch) | |
tree | cd94872a8a3e3b70d79d4ada086ef0084730642f /package/gdb/Makefile | |
parent | ffe894572aa0f6b1969308a75c015c489a5e2ed4 (diff) |
separate gdb/gdbserver package builds
try to get coldfire gdbserver to compile, but still not working.
An older version works, seems that newer versions are not tested
for uClinux case.
Diffstat (limited to 'package/gdb/Makefile')
-rw-r--r-- | package/gdb/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/package/gdb/Makefile b/package/gdb/Makefile index 070961589..8cb1b5b8f 100644 --- a/package/gdb/Makefile +++ b/package/gdb/Makefile @@ -11,6 +11,8 @@ PKG_DEPENDS:= libthread-db libncurses libexpat zlib PKG_BUILDDEP:= ncurses readline expat zlib PKG_NOPARALLEL:= 1 +PKG_ARCH_DEPENDS:= !m68k + PKG_BUILDDEP_UCLIBC:= libiconv-tiny PKG_BUILDDEP_UCLIBC_NG:=libiconv-tiny @@ -18,16 +20,11 @@ include ${ADK_TOPDIR}/mk/package.mk $(eval $(call PKG_template,GDB,gdb,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) -ifeq ($(ADK_TARGET_LIB_MUSL),y) -CONFIGURE_ARGS+= --disable-gdbserver -else -CONFIGURE_ARGS+= --enable-gdbserver -endif - TARGET_CFLAGS+= ${TARGET_CPPFLAGS} -fPIC CONFIGURE_ARGS+= --without-uiout \ --disable-tui \ --disable-gdbtk \ + --disable-gdbserver \ --without-x \ --disable-sim \ --disable-werror \ |