view src/gdb.mk @ 5274:043a1da3ff66

* installer-files/README.html: update sourceforge link (Bug #57617)
author John Donoghue
date Fri, 17 Jan 2020 12:44:40 -0500
parents 5eea3b8e1aed
children 904c78a5156c
line wrap: on
line source

# This file is part of MXE.
# See index.html for further information.

PKG             := gdb
$(PKG)_VERSION  := 8.3.1
$(PKG)_CHECKSUM := d403ba208945bbf04f8130ea4853730cdf0c8fc7
$(PKG)_SUBDIR   := gdb-$($(PKG)_VERSION)
$(PKG)_FILE     := gdb-$($(PKG)_VERSION).tar.xz
$(PKG)_URL      := ftp://ftp.gnu.org/pub/gnu/$(PKG)/$($(PKG)_FILE)
$(PKG)_URL_2    := https://ftpmirror.gnu.org/$(PKG)/$($(PKG)_FILE)
$(PKG)_DEPS     := expat libiconv readline zlib

define $(PKG)_UPDATE
    $(WGET) -q -O- 'http://ftp.gnu.org/gnu/gdb/?C=M;O=D' | \
    $(SED) -n 's,.*<a href="gdb-\([0-9][^"]*\)\.tar.*,\1,p' | \
    $(SORT) -V | \
    tail -1
endef

## Don't use --disable-static when configuring gdb as that will
## disable building the required libbfd.a library.

define $(PKG)_BUILD
    cd '$(1)' && ./configure \
        $(HOST_AND_BUILD_CONFIGURE_OPTIONS) \
        --prefix='$(HOST_PREFIX)' \
        --with-system-readline \
        CONFIG_SHELL=$(SHELL)
    $(MAKE) -C '$(1)' -j '$(JOBS)'
    $(MAKE) -C '$(1)' -j 1 install MAKEINFO=true
endef