summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* sys-devel/gdb: fix 'cet' detection on i586Sergei Trofimovich2021-02-261-0/+103
| | | | | | | Reported-by: Worx Bug: https://bugs.gentoo.org/771765 Package-Manager: Portage-3.0.15, Repoman-3.0.2 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: drop oldSergei Trofimovich2021-01-092-112/+0
| | | | | Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: backport -fno-common build for sim/ppcSergei Trofimovich2020-08-211-0/+97
| | | | | | | Reported-by: Daniel Gurney Closes: https://bugs.gentoo.org/738272 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: add missing include on ia64Sergei Trofimovich2020-05-191-0/+15
| | | | | Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: drop 8.3.1, bug #690582Sergei Trofimovich2020-03-291-222/+0
| | | | | | Bug: https://bugs.gentoo.org/690582 Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: tweak for gcc-10Sergei Trofimovich2020-01-211-0/+222
| | | | | | | | Pick upstream commit 851c0536c ("[ARM, sim] Fix build error and warnings"). Reported-by: Rolf Eike Beer Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: enable verbose gdb build, bug #695936Sergei Trofimovich2019-09-301-0/+13
| | | | | | | | | | | | | | | | | | While tracing missing tinfo detection Victor noticed lack of precise arguments to gdb's linker and compiler commands. Two issues fixed here: - restore default V=1 build in custome Makefile snippet - set --disable-dependency-tracking to top-level ./configure to reach ./configure files that actually define it. Top-level does not and thus tricks portage's econf() into not passing it on. Reported-by: Victor Mataré Bug: https://bugs.gentoo.org/695936 Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: Remove oldAndreas K. Hüttel2019-08-094-129/+0
| | | | | | | | | Versions prior to 8.3 cannot handle debug info built with binutils 2.32 and later. Old binutils will be masked because of CVEs. Package-Manager: Portage-2.3.70, Repoman-2.3.16 Signed-off-by: Andreas K. Hüttel <dilfridge@gentoo.org>
* sys-devel/gdb: drop 8.3.50.* snapshot in favour of 8.3 releaseSergei Trofimovich2019-05-112-155/+0
| | | | | Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: fix build against -std=c++17Sergei Trofimovich2019-03-141-0/+19
| | | | | | | | | | Patch is proposed upstream as: https://sourceware.org/ml/gdb-patches/2019-03/msg00306.html Reported-by: Helmut Jarausch Closes: https://bugs.gentoo.org/680232 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: add source-highlight depend, bug #680238Sergei Trofimovich2019-03-131-0/+136
| | | | | | | | | | Found and diagnosed by Jeroen Roovers. Patch proposed upstream as: https://sourceware.org/ml/gdb-patches/2019-03/msg00285.html Reported-by: Jeroen Roovers Closes: https://bugs.gentoo.org/680238 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: pull aarch64-musl fix, bug #676620Sergei Trofimovich2019-01-281-0/+49
| | | | | | | Reported-by: eroen Closes: https://bugs.gentoo.org/676620 Package-Manager: Portage-2.3.58, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: fix sparc build, bug #671726Sergei Trofimovich2018-11-241-0/+10
| | | | | | | Reported-by: Rolf Eike Beer Bug: https://bugs.gentoo.org/671726 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
* sys-devel/gdb: link against tinfow first, then tinfo. bug #669096Sergei Trofimovich2018-10-211-0/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | In bug #669096 gdb was directly linked both to libtinfo.so.6 and libncursesw.so.6: $ lddtree /usr/bin/gdb /usr/bin/gdb (interpreter => /lib64/ld-linux-x86-64.so.2) libtinfo.so.6 => /lib64/libtinfo.so.6 libncursesw.so.6 => /lib64/libncursesw.so.6 libtinfow.so.6 => /lib64/libtinfow.so.6 ... and caused gdb to SIGSEGV at start. Let's consistently link against *w libraries when both available. Note: the fix on it's own is not enough: - we don't pass include paths to ncursesw libraries - libreadline.so.7 is still linked against libtinfo.so.6 in Gentoo and needs a separate fix. But it's enough to make immediate SIGSEGV to go away. Reported-by: Michał Górny Bug: https://bugs.gentoo.org/669096 Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11
* sys-devel/gdb: fix build failure on ia64, bug #658014Sergei Trofimovich2018-06-301-0/+26
It's a backport of upstream fix by Émeric Maschino https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commitdiff;h=5a6c3296a7a90694ad4042f6256f3da6d4fa4ee8 Reported-by: Émeric Maschino Fixed-by: Émeric Maschino Closes: https://bugs.gentoo.org/658014 Package-Manager: Portage-2.3.41, Repoman-2.3.9