mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
update 11.1 (2021-09-13) to 11.2 (2022-01-16) Release Notes: - https://www.sourceware.org/gdb/download/ANNOUNCEMENT - https://www.sourceware.org/gdb/ - https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=blob_plain;f=gdb/NEWS;hb=gdb-11.2-release January 16th, 2022: GDB 11.2 Released! The latest version of GDB, version 11.2, is available for download. This is a minor corrective release over GDB 11.1, fixing the following issues: - PR sim/28302 (gdb fails to build with glibc 2.34) - PR build/28318 (std::thread support configure check does not use CXX_DIALECT) - PR gdb/28405 (arm-none-eabi: internal-error: ptid_t remote_target::select_thread_for_ambiguous_stop_reply(const target_waitstatus*): Assertion `first_resumed_thread != nullptr' failed) - PR tui/28483 ([gdb/tui] breakpoint creation not displayed) - PR build/28555 (uclibc compile failure since commit 4655f8509fd44e6efabefa373650d9982ff37fd6) - PR rust/28637 (Rust characters will be encoded using DW_ATE_UTF) - PR gdb/28758 (GDB 11 doesn't work correctly on binaries with a SHT_RELR (.relr.dyn) section) - PR gdb/28785 (Support SHT_RELR (.relr.dyn) section)
59 lines
2.3 KiB
Makefile
59 lines
2.3 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="11.2"
|
|
PKG_SHA256="1497c36a71881b8671a9a84a0ee40faab788ca30d7ba19d8463c3cc787152e32"
|
|
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 gmp"
|
|
PKG_DEPENDS_HOST="toolchain:host zlib:host ncurses:host expat:host gmp:host"
|
|
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_COMMON="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 \
|
|
--disable-source-highlight \
|
|
--disable-nls \
|
|
--disable-rpath \
|
|
--disable-sim \
|
|
--without-x \
|
|
--disable-tui \
|
|
--disable-libada \
|
|
--without-lzma \
|
|
--disable-libquadmath \
|
|
--disable-libquadmath-support \
|
|
--enable-libada \
|
|
--enable-libssp \
|
|
--disable-werror"
|
|
|
|
PKG_CONFIGURE_OPTS_TARGET="${PKG_CONFIGURE_OPTS_COMMON} \
|
|
--with-libexpat-prefix=${SYSROOT_PREFIX}/usr \
|
|
--with-libgmp-prefix=${SYSROOT_PREFIX}/usr"
|
|
|
|
PKG_CONFIGURE_OPTS_HOST="${PKG_CONFIGURE_OPTS_COMMON} \
|
|
--target=${TARGET_NAME}"
|
|
|
|
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
|
|
}
|