summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergei Trofimovich <slyfox@gentoo.org>2019-09-30 22:37:33 +0100
committerSergei Trofimovich <slyfox@gentoo.org>2019-09-30 22:52:02 +0100
commitbb6538b02a7df594bb1e91745f153944156492cc (patch)
tree80e668757e00dbf6153179f3f31f87332275b09a /sys-devel/gdb/files/gdb-8.3.1-verbose-build.patch
parentsys-devel/gdb: drop support for fedora releases (diff)
downloadgentoo-bb6538b02a7df594bb1e91745f153944156492cc.tar.gz
gentoo-bb6538b02a7df594bb1e91745f153944156492cc.tar.bz2
gentoo-bb6538b02a7df594bb1e91745f153944156492cc.zip
sys-devel/gdb: enable verbose gdb build, bug #695936
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>
Diffstat (limited to 'sys-devel/gdb/files/gdb-8.3.1-verbose-build.patch')
-rw-r--r--sys-devel/gdb/files/gdb-8.3.1-verbose-build.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/sys-devel/gdb/files/gdb-8.3.1-verbose-build.patch b/sys-devel/gdb/files/gdb-8.3.1-verbose-build.patch
new file mode 100644
index 000000000000..06aa6084d2d2
--- /dev/null
+++ b/sys-devel/gdb/files/gdb-8.3.1-verbose-build.patch
@@ -0,0 +1,13 @@
+Enable verbose build. By default gdb ignores even --disable-silent-rules.
+Override verbosity back to non-silent.
+
+https://bugs.gentoo.org/695936
+--- a/gdb/silent-rules.mk
++++ b/gdb/silent-rules.mk
+@@ -1,5 +1,4 @@
+-# If V is undefined or V=0 is specified, use the silent/verbose/compact mode.
+-V ?= 0
++V ?= 1
+ ifeq ($(V),0)
+ ECHO_CXX = @echo " CXX $@";
+ ECHO_CXXLD = @echo " CXXLD $@";