From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x432.google.com (mail-wr1-x432.google.com [IPv6:2a00:1450:4864:20::432]) by sourceware.org (Postfix) with ESMTPS id 947993858C2C for ; Tue, 28 Sep 2021 11:26:31 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 947993858C2C Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=embecosm.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=embecosm.com Received: by mail-wr1-x432.google.com with SMTP id r23so32078318wra.6 for ; Tue, 28 Sep 2021 04:26:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=embecosm.com; s=google; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=ztZb3bhiusLdEjPf4WdVnrCgFA4bqHCzrb9WK9PIk10=; b=GZyUCGO55IU6b7ZDsWf8d0lJN//JHnvX1n0jiEf21CTrNJMNEHHcH05kItyctNhrnN 83jxlOoYfcjwcI3DJ6pAO/f3V9CknNnTlVFNnug6fFv74UFCM6Gnqdj6A/gXnB+tzIyf XfoFfQyuZ4vFVNvuhpiP0HJWy1rwt527b1AxGo+slr2pitZp/oK9nRlvMBSM/IG2/pEv ofGWZdI+mt/7Eumhcs4rZmE6APs/fYlnbh8Xlb5vsIKyiHezdtLX01xkYVTZ/0oYqmqu ir70tjGN+/Guum5iTnPfKBf+b+NdZkIAVTgLu72W2VLsWJde9Kksrf34FPQhC3sjLrCT v8Ng== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=ztZb3bhiusLdEjPf4WdVnrCgFA4bqHCzrb9WK9PIk10=; b=CxLmJKynfgFKHBlzEd2YjX5+K4bzHa/S58OJQbQOwWANiO1/dIJSpWAxuAAnH3neW5 7DglCk5GyNtqn/ZJPXyMlv1AMcacfTXTXNs2lJFtgdATsWvIoZJDsoQD0hDu0DUS1LPb mWQHgC/UOVdw07/aY5PxP+A/S7l3N/qhRzz92nyUrwLg/FL8sBe/RtL8j60ZIOK7jTou 8e9Y2IjyiHFp1JUW+yKqXYJ1BVPNsqDEHLPcrNfAxgssuW8d3o+2fnsAl96iOLRBX5gF 1Yk5maOE7ic0OSlAyNfBPbjq6p9TqQvfUP/da5oz0cw0CACzUpgEt75HxJRA9HDTsmsL 5lmw== X-Gm-Message-State: AOAM5326I4PXbjcEfxbVeLK/qax9rIvCaXTpqfs9Qjhy1Ben6/dC56HN 8CXfxSko6nelxn5IjvpTptPFdUXLrhComg== X-Google-Smtp-Source: ABdhPJzUIajjO8G6FsyRRHQb4XEfvzRew0UrLsbPaTLuwrso2H5nHHSdXVvMAN0KBvxbkHQ24BuzwQ== X-Received: by 2002:a5d:69c8:: with SMTP id s8mr5733541wrw.235.1632828390580; Tue, 28 Sep 2021 04:26:30 -0700 (PDT) Received: from localhost (host86-169-137-11.range86-169.btcentralplus.com. [86.169.137.11]) by smtp.gmail.com with ESMTPSA id t126sm2408290wma.4.2021.09.28.04.26.30 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 28 Sep 2021 04:26:30 -0700 (PDT) From: Andrew Burgess To: gdb-patches@sourceware.org Subject: [PUSHED 2/6] gdb: Add a dependency between gdb and libbacktrace Date: Tue, 28 Sep 2021 12:26:20 +0100 Message-Id: X-Mailer: git-send-email 2.25.4 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-10.5 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_BARRACUDACENTRAL, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Sep 2021 11:26:32 -0000 GDB is going to start using libbacktrace, so add a build dependency. ChangeLog: * Makefile.def: Add all-gdb dependency on all-libbacktrace. * Makefile.in: Regenerate. --- Makefile.def | 1 + Makefile.in | 1 + 2 files changed, 2 insertions(+) diff --git a/Makefile.def b/Makefile.def index 5a460f1dbbc..d5b1ee882b6 100644 --- a/Makefile.def +++ b/Makefile.def @@ -408,6 +408,7 @@ dependencies = { module=all-gdb; on=all-sim; }; dependencies = { module=all-gdb; on=all-libdecnumber; }; dependencies = { module=all-gdb; on=all-libtermcap; }; dependencies = { module=all-gdb; on=all-libctf; }; +dependencies = { module=all-gdb; on=all-libbacktrace; }; // Host modules specific to gdbserver. dependencies = { module=configure-gdbserver; on=all-gnulib; }; diff --git a/Makefile.in b/Makefile.in index 9b3a5d75735..91b714f6e88 100644 --- a/Makefile.in +++ b/Makefile.in @@ -52534,6 +52534,7 @@ all-gdb: maybe-all-libiconv all-gdb: maybe-all-opcodes all-gdb: maybe-all-libdecnumber all-gdb: maybe-all-libctf +all-gdb: maybe-all-libbacktrace all-gdbserver: maybe-all-libiberty configure-gdbsupport: maybe-configure-intl all-gdbsupport: maybe-all-intl -- 2.25.4