Makefile 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 libiconv libexpat libgcc
  9. PKG_BUILDDEP:= ncurses readline libiconv expat
  10. PKG_NOPARALLEL:= 1
  11. PKG_ARCH_DEPENDS:= !cris !avr32 !m68k
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,GDB,gdb,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. ifeq ($(ADK_STATIC),y)
  15. TARGET_CFLAGS+= -static
  16. CONFIGURE_ARGS+= --enable-static
  17. endif
  18. TARGET_CFLAGS:= $(filter-out -flto,$(TARGET_CFLAGS))
  19. TARGET_CFLAGS+= ${TARGET_CPPFLAGS} -fPIC
  20. CONFIGURE_ARGS+= --without-uiout --enable-gdbmi \
  21. --disable-tui --disable-gdbtk --without-x \
  22. --without-included-gettext --disable-sim \
  23. --with-curses --disable-werror \
  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. gdb-install:
  30. ${INSTALL_DIR} ${IDIR_GDB}/usr/bin
  31. ${INSTALL_BIN} ${WRKINST}/usr/bin/gdb ${IDIR_GDB}/usr/bin/
  32. # shipped libbfd conflicts with system wide one
  33. rm -f ${WRKINST}/usr/lib/libbfd*
  34. include ${TOPDIR}/mk/pkg-bottom.mk