Makefile 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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
  9. PKG_BUILDDEP:= ncurses readline libiconv-tiny 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. --without-auto-load-safe-path \
  25. --disable-gdbserver \
  26. --without-python
  27. XAKE_FLAGS+= LDFLAGS='${TARGET_LDFLAGS}'
  28. # disable honour cflags stuff
  29. XAKE_FLAGS+= GCC_HONOUR_COPTS:=s
  30. gdb-install:
  31. ${INSTALL_DIR} ${IDIR_GDB}/usr/bin
  32. ${INSTALL_BIN} ${WRKINST}/usr/bin/gdb ${IDIR_GDB}/usr/bin/
  33. # shipped libbfd conflicts with system wide one
  34. rm -f ${WRKINST}/usr/lib/libbfd*
  35. include ${TOPDIR}/mk/pkg-bottom.mk