diff options
author | Indu Bhagat <indu.bhagat@oracle.com> | 2023-01-18 23:17:49 -0800 |
---|---|---|
committer | Indu Bhagat <indu.bhagat@oracle.com> | 2023-01-18 23:17:49 -0800 |
commit | b8d21eb0cd10d6127e77cc437d82e949adb0c454 (patch) | |
tree | 8d722b695903d56496d470eab9c232fe28727c2b /Makefile.def | |
parent | 066bd434118044487e69a9fbc5cacdee60326595 (diff) | |
download | gdb-b8d21eb0cd10d6127e77cc437d82e949adb0c454.zip gdb-b8d21eb0cd10d6127e77cc437d82e949adb0c454.tar.gz gdb-b8d21eb0cd10d6127e77cc437d82e949adb0c454.tar.bz2 |
toplevel: Makefile.def: add install-strip dependency on libsframe
As noted in PR libsframe/30014 - FTBFS: install-strip fails because
bfdlib relinks and fails to find libsframe, the install time
dependencies of libbfd need to be updated.
PR libsframe/30014
* Makefile.def: Reflect that libsframe needs to installed before
libbfd. Reorder a bit to better track libsframe dependencies.
* Makefile.in: Regenerate.
Diffstat (limited to 'Makefile.def')
-rw-r--r-- | Makefile.def | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.def b/Makefile.def index f549d57..2f51f83 100644 --- a/Makefile.def +++ b/Makefile.def @@ -493,7 +493,6 @@ dependencies = { module=install-binutils; on=install-opcodes; }; dependencies = { module=install-strip-binutils; on=install-strip-opcodes; }; // Likewise for ld, libctf, and bfd. -dependencies = { module=install-bfd; on=install-libsframe; }; dependencies = { module=install-libctf; on=install-bfd; }; dependencies = { module=install-ld; on=install-bfd; }; dependencies = { module=install-ld; on=install-libctf; }; @@ -501,6 +500,10 @@ dependencies = { module=install-strip-libctf; on=install-strip-bfd; }; dependencies = { module=install-strip-ld; on=install-strip-bfd; }; dependencies = { module=install-strip-ld; on=install-strip-libctf; }; +// libbfd depends on libsframe +dependencies = { module=install-bfd; on=install-libsframe; }; +dependencies = { module=install-strip-bfd; on=install-strip-libsframe; }; + // libopcodes depends on libbfd dependencies = { module=configure-opcodes; on=configure-bfd; hard=true; }; dependencies = { module=install-opcodes; on=install-bfd; }; |