From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7850) id 65EC13858D28; Thu, 19 Jan 2023 07:25:11 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 65EC13858D28 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1674113111; bh=CvgTYLXWXbacb4bsCcqR/1v2y9wlf5g4ZE/czKpS5sA=; h=From:To:Subject:Date:From; b=c+caMB48tETeso9Ntnp0jOQW3AOMKDZ2GqBgrvIqCJ+ZuDiegqgt8zHjFcMBQ4A6b yv/QbuLj2uCFalZ2dj/1lIyT8ApHgM9IzUchDSGexFXfh0G5E3lMTmgwSoN3diAsEQ AumLrMEEs1h314Va6VBfbeiszkHpADfVMi7rgJwI= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Indu Bhagat To: bfd-cvs@sourceware.org, gdb-cvs@sourceware.org Subject: [binutils-gdb/binutils-2_40-branch] toplevel: Makefile.def: add install-strip dependency on libsframe X-Act-Checkin: binutils-gdb X-Git-Author: Indu Bhagat X-Git-Refname: refs/heads/binutils-2_40-branch X-Git-Oldrev: ffb83e32fc11f36b7b82b876c14888f82cd983b3 X-Git-Newrev: bcea253f5fa194e57f9564e8461c718e228bd26e Message-Id: <20230119072511.65EC13858D28@sourceware.org> Date: Thu, 19 Jan 2023 07:25:11 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3Dbcea253f5fa1= 94e57f9564e8461c718e228bd26e commit bcea253f5fa194e57f9564e8461c718e228bd26e Author: Indu Bhagat Date: Wed Jan 18 23:17:49 2023 -0800 toplevel: Makefile.def: add install-strip dependency on libsframe =20 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. =20 PR libsframe/30014 * Makefile.def: Reflect that libsframe needs to installed before libbfd. Reorder a bit to better track libsframe dependencies. * Makefile.in: Regenerate. =20 (cherry picked from commit b8d21eb0cd10d6127e77cc437d82e949adb0c454) Diff: --- Makefile.def | 5 ++++- Makefile.in | 3 ++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Makefile.def b/Makefile.def index f549d5741ee..2f51f83b043 100644 --- a/Makefile.def +++ b/Makefile.def @@ -493,7 +493,6 @@ dependencies =3D { module=3Dinstall-binutils; on=3Dinst= all-opcodes; }; dependencies =3D { module=3Dinstall-strip-binutils; on=3Dinstall-strip-opc= odes; }; =20 // Likewise for ld, libctf, and bfd. -dependencies =3D { module=3Dinstall-bfd; on=3Dinstall-libsframe; }; dependencies =3D { module=3Dinstall-libctf; on=3Dinstall-bfd; }; dependencies =3D { module=3Dinstall-ld; on=3Dinstall-bfd; }; dependencies =3D { module=3Dinstall-ld; on=3Dinstall-libctf; }; @@ -501,6 +500,10 @@ dependencies =3D { module=3Dinstall-strip-libctf; on= =3Dinstall-strip-bfd; }; dependencies =3D { module=3Dinstall-strip-ld; on=3Dinstall-strip-bfd; }; dependencies =3D { module=3Dinstall-strip-ld; on=3Dinstall-strip-libctf; }; =20 +// libbfd depends on libsframe +dependencies =3D { module=3Dinstall-bfd; on=3Dinstall-libsframe; }; +dependencies =3D { module=3Dinstall-strip-bfd; on=3Dinstall-strip-libsfram= e; }; + // libopcodes depends on libbfd dependencies =3D { module=3Dconfigure-opcodes; on=3Dconfigure-bfd; hard=3D= true; }; dependencies =3D { module=3Dinstall-opcodes; on=3Dinstall-bfd; }; diff --git a/Makefile.in b/Makefile.in index 679e121f8d6..38f1f9abea9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -64549,13 +64549,14 @@ all-stageautoprofile-binutils: maybe-all-stageaut= oprofile-libsframe all-stageautofeedback-binutils: maybe-all-stageautofeedback-libsframe install-binutils: maybe-install-opcodes install-strip-binutils: maybe-install-strip-opcodes -install-bfd: maybe-install-libsframe install-libctf: maybe-install-bfd install-ld: maybe-install-bfd install-ld: maybe-install-libctf install-strip-libctf: maybe-install-strip-bfd install-strip-ld: maybe-install-strip-bfd install-strip-ld: maybe-install-strip-libctf +install-bfd: maybe-install-libsframe +install-strip-bfd: maybe-install-strip-libsframe configure-opcodes: configure-bfd configure-stage1-opcodes: configure-stage1-bfd configure-stage2-opcodes: configure-stage2-bfd