From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mout-p-103.mailbox.org (mout-p-103.mailbox.org [80.241.56.161]) by sourceware.org (Postfix) with ESMTPS id 0AEB73856976; Mon, 7 Aug 2023 11:20:01 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 0AEB73856976 Authentication-Results: sourceware.org; dmarc=pass (p=reject dis=none) header.from=aarsen.me Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=aarsen.me Received: from smtp202.mailbox.org (smtp202.mailbox.org [10.196.197.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-103.mailbox.org (Postfix) with ESMTPS id 4RKDPV3WJZz9sdF; Mon, 7 Aug 2023 13:19:58 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=aarsen.me; s=MBO0001; t=1691407198; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=/MiYWdrlKKEFAZX+D7fpepx8HVGJJ4OzKLt9lZXN+wk=; b=IGW/3dKVvPA5rZHxiDMcK8pcmkxGykGgBcBgbZ3/TZaGrfT1QTXn3rCL5/e35eyiZAJWEl dJOk/7uqJ2MrUC8KSEnXpke0gSCX8Rf2N/aThvr8Xmyk0J05Z7NdscvlLqoDHi5yoTNkoe Kw9BuGr+yqFrMbrMNTErUdcYfFrqNzjbnrM2wdyokueCpYfST1iR1WXq11gB46g0WV7CFa P9L8f2oKRnVS1QSgaqEG4GvwBOYLpYEQ7oFgtJNuNuvb4gtSGR80q6csNZhuW7RJxAljqB fxvip/ZKCE9lMEgroPzt+KGk+hKDnArM8oen4icX0iv6MUVuzMJfUpBIxo/KhA== From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= To: gdb-patches@sourceware.org, binutils@sourceware.org Cc: Roger Sayle Subject: [PATCH 42/45] PR bootstrap/106472: Add libgo depends on libbacktrace to Makefile.def Date: Mon, 7 Aug 2023 13:07:45 +0200 Message-ID: <20230807111029.2320238-43-arsen@aarsen.me> In-Reply-To: <20230807111029.2320238-1-arsen@aarsen.me> References: <20230807111029.2320238-1-arsen@aarsen.me> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.1 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,KAM_INFOUSMEBIZ,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: From: Roger Sayle This patch fixes PR bootstrap/106472 by adding a missing dependency to Makefile.def to allow make bootstrap when configured using "--enable-languages=go" (and not using make with multiple threads). 2022-07-31 Roger Sayle ChangeLog PR bootstrap/106472 * Makefile.def (dependencies): Make configure-target-libgo depend upon all-target-libbacktrace. * Makefile.in: Regenerate. --- Makefile.def | 3 ++- Makefile.in | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.def b/Makefile.def index ee7559fdd3e..1ea798ce1a3 100644 --- a/Makefile.def +++ b/Makefile.def @@ -4,7 +4,7 @@ AutoGen definitions Makefile.tpl; // Makefile.in is generated from Makefile.tpl by 'autogen Makefile.def'. // This file was originally written by Nathanael Nerode. // -// Copyright 2002-2021 Free Software Foundation +// Copyright 2002-2022 Free Software Foundation // // This file is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -681,6 +681,7 @@ dependencies = { module=configure-target-newlib; on=all-binutils; }; dependencies = { module=configure-target-newlib; on=all-ld; }; dependencies = { module=configure-target-libgfortran; on=all-target-libquadmath; }; dependencies = { module=configure-target-libgfortran; on=all-target-libbacktrace; }; +dependencies = { module=configure-target-libgo; on=all-target-libbacktrace; }; languages = { language=c; gcc-check-target=check-gcc; }; languages = { language=c++; gcc-check-target=check-c++; diff --git a/Makefile.in b/Makefile.in index 5f0402b5bb7..4a46cd3e871 100644 --- a/Makefile.in +++ b/Makefile.in @@ -67064,6 +67064,7 @@ all-target-libgm2: maybe-all-target-libatomic configure-target-newlib: maybe-all-binutils configure-target-newlib: maybe-all-ld configure-target-libgfortran: maybe-all-target-libbacktrace +configure-target-libgo: maybe-all-target-libbacktrace @endunless gcc-bootstrap # Dependencies for target modules on other target modules are -- 2.41.0