Files
Arch-R/packages/debug/gdb/package.mk
2020-02-22 07:39:18 +01:00

51 lines
1.9 KiB
Makefile

# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="gdb"
PKG_VERSION="9.1"
PKG_SHA256="699e0ec832fdd2f21c8266171ea5bf44024bd05164fdf064e4d10cc4cf0d1737"
PKG_LICENSE="GPL"
PKG_SITE="http://www.gnu.org/software/gdb/"
PKG_URL="https://ftp.gnu.org/gnu/gdb/$PKG_NAME-$PKG_VERSION.tar.xz"
PKG_DEPENDS_TARGET="toolchain zlib ncurses expat"
PKG_LONGDESC="GNU Project debugger, allows you to see what is going on inside another program while it executes."
PKG_BUILD_FLAGS="+size"
PKG_CONFIGURE_OPTS_TARGET="bash_cv_have_mbstate_t=set \
--disable-shared \
--enable-static \
--with-auto-load-safe-path=/ \
--with-python=no \
--with-guile=no \
--with-mpfr=no \
--with-intel-pt=no \
--with-babeltrace=no \
--with-expat=yes \
--with-libexpat-prefix=${SYSROOT_PREFIX}/usr \
--disable-source-highlight \
--disable-nls \
--disable-sim \
--without-x \
--disable-tui \
--disable-libada \
--without-lzma \
--disable-libquadmath \
--disable-libquadmath-support \
--enable-libada \
--enable-libssp \
--disable-werror"
pre_configure_target() {
CC_FOR_BUILD="$HOST_CC"
CFLAGS_FOR_BUILD="$HOST_CFLAGS"
}
makeinstall_target() {
make DESTDIR=$INSTALL install
}
post_makeinstall_target() {
rm -rf $INSTALL/usr/share/gdb/python
}