* [PATCH] Fix dependency tracking in gdbserver subdirectories
@ 2018-04-19 2:40 Simon Marchi
2018-04-19 17:11 ` Pedro Alves
0 siblings, 1 reply; 3+ messages in thread
From: Simon Marchi @ 2018-04-19 2:40 UTC (permalink / raw)
To: gdb-patches; +Cc: Simon Marchi
The dependency tracking (the thing that knows which source file included
which other source file during last build to know what to rebuild when
an included file changes) is broken for gdbserver subdirectories (arch
and common).
The dependency tracking files are created in the form
arch/.deps/i386.Po
but we try to include
.deps/arch/i386.Po
An easy smoke test is too "touch" the gdb/features/i386/32bit-core.c
file in the source directory and try to rebuild gdbserver. This file is
included by gdb/arch/i386.c, so it should cause
gdb/gdbserver/arch/i386.o in the build directory to be rebuilt. It
currently isn't rebuilt, but is with this patch applied.
This patch copies the technique used in GDB to transform the dep file
paths to the proper form.
Also, while testing using the depcomp method of dependency tracking (by
just hacking the condition), I noticed that depcomp was not found. The
path to depcomp seems to be missing a "..".
gdb/gdbserver/ChangeLog:
* Makefile.in (depcomp): Add "..".
(all_deps_files): New and use it.
---
gdb/gdbserver/Makefile.in | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/gdb/gdbserver/Makefile.in b/gdb/gdbserver/Makefile.in
index 4a54235..c377378 100644
--- a/gdb/gdbserver/Makefile.in
+++ b/gdb/gdbserver/Makefile.in
@@ -62,7 +62,7 @@ AR_FLAGS = rc
# Dependency tracking information.
DEPMODE = @CCDEPMODE@
DEPDIR = @DEPDIR@
-depcomp = $(SHELL) $(srcdir)/../depcomp
+depcomp = $(SHELL) $(srcdir)/../../depcomp
# Directory containing source files. Don't clean up the spacing,
# this exact string is matched for by the "configure" script.
@@ -652,8 +652,12 @@ else
$(all_object_files) : $(generated_files)
endif
+# All the .deps files to include.
+all_deps_files = $(foreach dep,$(patsubst %.o,%.Po,$(all_object_files)),\
+ $(dir $(dep))/$(DEPDIR)/$(notdir $(dep)))
+
# Dependencies.
--include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
+-include $(all_deps_files)
# Disable implicit make rules.
include $(srcdir)/../disable-implicit-rules.mk
--
2.7.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Fix dependency tracking in gdbserver subdirectories
2018-04-19 2:40 [PATCH] Fix dependency tracking in gdbserver subdirectories Simon Marchi
@ 2018-04-19 17:11 ` Pedro Alves
2018-04-19 17:20 ` Simon Marchi
0 siblings, 1 reply; 3+ messages in thread
From: Pedro Alves @ 2018-04-19 17:11 UTC (permalink / raw)
To: Simon Marchi, gdb-patches
On 04/19/2018 03:40 AM, Simon Marchi wrote:
> gdb/gdbserver/ChangeLog:
>
> * Makefile.in (depcomp): Add "..".
> (all_deps_files): New and use it.
LGTM.
Thanks,
Pedro Alves
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Fix dependency tracking in gdbserver subdirectories
2018-04-19 17:11 ` Pedro Alves
@ 2018-04-19 17:20 ` Simon Marchi
0 siblings, 0 replies; 3+ messages in thread
From: Simon Marchi @ 2018-04-19 17:20 UTC (permalink / raw)
To: Pedro Alves; +Cc: Simon Marchi, gdb-patches
On 2018-04-19 13:11, Pedro Alves wrote:
> On 04/19/2018 03:40 AM, Simon Marchi wrote:
>
>> gdb/gdbserver/ChangeLog:
>>
>> * Makefile.in (depcomp): Add "..".
>> (all_deps_files): New and use it.
>
> LGTM.
>
> Thanks,
> Pedro Alves
Thanks, pushed.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-04-19 17:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-19 2:40 [PATCH] Fix dependency tracking in gdbserver subdirectories Simon Marchi
2018-04-19 17:11 ` Pedro Alves
2018-04-19 17:20 ` Simon Marchi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox