summaryrefslogtreecommitdiff
path: root/Makefile.def
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2020-01-17 13:40:10 -0500
committerSimon Marchi <simon.marchi@efficios.com>2020-01-17 13:40:21 -0500
commitc4d3fc1480320886b6388d7e7700541a0cbb7714 (patch)
treeb5aad1ac04b6474d95e082828f0e4caa8a0de8a0 /Makefile.def
parent07f1f3aa536add16b20f2792e1c325fb02b7da2d (diff)
downloadbinutils-gdb-c4d3fc1480320886b6388d7e7700541a0cbb7714.tar.gz
Make all-gdbsupport depend on all-bfd
Trying to run "make all-gdbsupport" at the top-level in a build from scratch results in: make[2]: Entering directory '/home/smarchi/build/binutils-gdb/gdbsupport' CC agent.o In file included from /home/smarchi/src/binutils-gdb/gdbsupport/common-defs.h:133, from /home/smarchi/src/binutils-gdb/gdbsupport/agent.c:20: /home/smarchi/src/binutils-gdb/gdbsupport/common-types.h:35:10: fatal error: bfd.h: No such file or directory 35 | #include "bfd.h" | ^~~~~~~ Before building all-gdbsupport, we need all-bfd to run, so that bfd.h is generated. (Once this patch is merged in the binutils-gdb repo, I'll send it to gcc to keep the files in sync.) ChangeLog: * Makefile.def: Add dependencies of all-gdbsupport on all-bfd. * Makefile.in: Re-generate.
Diffstat (limited to 'Makefile.def')
-rw-r--r--Makefile.def1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.def b/Makefile.def
index 079fd3e4f16..253eb45ef14 100644
--- a/Makefile.def
+++ b/Makefile.def
@@ -417,6 +417,7 @@ dependencies = { module=all-libgui; on=all-itcl; };
dependencies = { module=configure-gdbsupport; on=configure-bfd; };
dependencies = { module=configure-gdbsupport; on=configure-gnulib; };
+dependencies = { module=all-gdbsupport; on=all-bfd; };
dependencies = { module=all-gdbsupport; on=all-gnulib; };
// Host modules specific to binutils.