Merge pull request #8389 from heitbaum/pkg

gdb: update to 14.1
This commit is contained in:
CvH 2023-12-06 19:51:57 +01:00 committed by GitHub
commit f283d75089
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 5 deletions

View File

@ -3,13 +3,13 @@
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv) # Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="gdb" PKG_NAME="gdb"
PKG_VERSION="13.2" PKG_VERSION="14.1"
PKG_SHA256="fd5bebb7be1833abdb6e023c2f498a354498281df9d05523d8915babeb893f0a" PKG_SHA256="d66df51276143451fcbff464cc8723d68f1e9df45a6a2d5635a54e71643edb80"
PKG_LICENSE="GPL" PKG_LICENSE="GPL"
PKG_SITE="http://www.gnu.org/software/gdb/" PKG_SITE="http://www.gnu.org/software/gdb/"
PKG_URL="https://ftp.gnu.org/gnu/gdb/${PKG_NAME}-${PKG_VERSION}.tar.xz" PKG_URL="https://ftp.gnu.org/gnu/gdb/${PKG_NAME}-${PKG_VERSION}.tar.xz"
PKG_DEPENDS_TARGET="toolchain zlib ncurses expat gmp" PKG_DEPENDS_TARGET="toolchain expat gmp mpfr ncurses zlib"
PKG_DEPENDS_HOST="toolchain:host zlib:host ncurses:host expat:host gmp:host" PKG_DEPENDS_HOST="toolchain:host expat:host gmp:host mpfr:host ncurses:host zlib:host"
PKG_LONGDESC="GNU Project debugger, allows you to see what is going on inside another program while it executes." PKG_LONGDESC="GNU Project debugger, allows you to see what is going on inside another program while it executes."
PKG_BUILD_FLAGS="+size" PKG_BUILD_FLAGS="+size"
@ -19,7 +19,6 @@ PKG_CONFIGURE_OPTS_COMMON="bash_cv_have_mbstate_t=set \
--with-auto-load-safe-path=/ \ --with-auto-load-safe-path=/ \
--with-python=no \ --with-python=no \
--with-guile=no \ --with-guile=no \
--with-mpfr=no \
--with-intel-pt=no \ --with-intel-pt=no \
--with-babeltrace=no \ --with-babeltrace=no \
--with-expat=yes \ --with-expat=yes \

View File

@ -9,6 +9,7 @@ PKG_LICENSE="LGPL"
PKG_SITE="http://www.mpfr.org/" PKG_SITE="http://www.mpfr.org/"
PKG_URL="http://ftpmirror.gnu.org/mpfr/${PKG_NAME}-${PKG_VERSION}.tar.xz" PKG_URL="http://ftpmirror.gnu.org/mpfr/${PKG_NAME}-${PKG_VERSION}.tar.xz"
PKG_DEPENDS_HOST="ccache:host gmp:host" PKG_DEPENDS_HOST="ccache:host gmp:host"
PKG_DEPENDS_TARGET="gmp"
PKG_LONGDESC="A C library for multiple-precision floating-point computations with exact rounding." PKG_LONGDESC="A C library for multiple-precision floating-point computations with exact rounding."
PKG_CONFIGURE_OPTS_HOST="--target=${TARGET_NAME} \ PKG_CONFIGURE_OPTS_HOST="--target=${TARGET_NAME} \
@ -16,3 +17,6 @@ PKG_CONFIGURE_OPTS_HOST="--target=${TARGET_NAME} \
--prefix=${TOOLCHAIN} \ --prefix=${TOOLCHAIN} \
--with-gmp-lib=${TOOLCHAIN}/lib \ --with-gmp-lib=${TOOLCHAIN}/lib \
--with-gmp-include=${TOOLCHAIN}/include" --with-gmp-include=${TOOLCHAIN}/include"
PKG_CONFIGURE_OPTS_TARGET="--target=${TARGET_NAME} \
--enable-static --disable-shared"