Makefile 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. include ${TOPDIR}/toolchain/gdb/Makefile.inc
  5. PKG_NAME:= gdb
  6. PKG_DESCR:= GNU debugger
  7. PKG_SECTION:= debug
  8. PKG_DEPENDS:= libthread-db libncurses libexpat libgcc zlib
  9. PKG_BUILDDEP:= ncurses readline libiconv-tiny expat zlib
  10. PKG_NOPARALLEL:= 1
  11. include ${TOPDIR}/mk/package.mk
  12. $(eval $(call PKG_template,GDB,gdb,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  13. ifeq ($(ADK_STATIC),y)
  14. TARGET_CFLAGS+= -static
  15. CONFIGURE_ARGS+= --enable-static
  16. endif
  17. TARGET_CFLAGS:= $(filter-out -flto,$(TARGET_CFLAGS))
  18. TARGET_CFLAGS+= ${TARGET_CPPFLAGS} -fPIC
  19. CONFIGURE_ARGS+= --without-uiout --enable-gdbmi \
  20. --disable-tui --disable-gdbtk --without-x \
  21. --without-included-gettext --disable-sim \
  22. --with-curses --disable-werror \
  23. --without-auto-load-safe-path \
  24. --disable-gdbserver \
  25. --without-python
  26. XAKE_FLAGS+= LDFLAGS='${TARGET_LDFLAGS}'
  27. # disable honour cflags stuff
  28. XAKE_FLAGS+= GCC_HONOUR_COPTS:=s
  29. post-extract:
  30. -mv $(STAGING_TARGET_DIR)/usr/lib/libiberty.a $(STAGING_TARGET_DIR)/usr/lib/libiberty.a.bak
  31. gdb-install:
  32. ${INSTALL_DIR} ${IDIR_GDB}/usr/bin
  33. ${INSTALL_BIN} ${WRKINST}/usr/bin/gdb ${IDIR_GDB}/usr/bin/
  34. # shipped libbfd conflicts with system wide one
  35. rm -f ${WRKINST}/usr/lib/libbfd*
  36. -mv $(STAGING_TARGET_DIR)/usr/lib/libiberty.a.bak $(STAGING_TARGET_DIR)/usr/lib/libiberty.a
  37. include ${TOPDIR}/mk/pkg-bottom.mk