From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mout-p-201.mailbox.org (mout-p-201.mailbox.org [80.241.56.171]) by sourceware.org (Postfix) with ESMTPS id ABA193858CD1 for ; Fri, 8 Dec 2023 18:34:42 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org ABA193858CD1 Authentication-Results: sourceware.org; dmarc=pass (p=quarantine dis=none) header.from=gdcproject.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gdcproject.org ARC-Filter: OpenARC Filter v1.0.0 sourceware.org ABA193858CD1 Authentication-Results: server2.sourceware.org; arc=none smtp.remote-ip=80.241.56.171 ARC-Seal: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1702060484; cv=none; b=uJEMvxz0XypQnjjgO6QM9EUGFeML4zath5GStGAfs4D5xPxSMjIwUaDRv62814cEurEsAleWPgKslKRpyxBq9+nX4F9wTe+ie9FxsrzFBIFpShasmf2JkzgETB9827b+qLgViThpNqgbr26C/eXDxs7apn2AAyUIazmHryJm7+8= ARC-Message-Signature: i=1; a=rsa-sha256; d=sourceware.org; s=key; t=1702060484; c=relaxed/simple; bh=4QsFPgfpuEDWdKzCiMI+6GNZ9kZryFmQVYrTVMFozbE=; h=DKIM-Signature:Date:From:Subject:To:MIME-Version:Message-Id; b=QxJxhBbcay1omcQin3obRBbBA/H1Mib24aU0KrvJ9qaHmZqH9p5+qoR5cjam1cB42nlpekw21r2EAI/RBQ0DIZrco9Sg/AwRA7PpC4wS4dTIr/ir7enZEcoYno46XqbnYwe8VcddPxRfH+Doyb18ctx7fsu/jQsh4FN5SUBD9y0= ARC-Authentication-Results: i=1; server2.sourceware.org Received: from smtp102.mailbox.org (smtp102.mailbox.org [10.196.197.102]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-201.mailbox.org (Postfix) with ESMTPS id 4Sn0DH4DyJz9sh8; Fri, 8 Dec 2023 19:34:39 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gdcproject.org; s=MBO0001; t=1702060479; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=KdqAomLKH9W4ojL033PiUpXLx7Bq+2K+VrC6WIclGUw=; b=hP2VOLHvACPfr9Dh2KltZhZr/XMdt5TS24EPzDCHEQlGK11kMGdB/m5a0q5sg6p6yav6mE 3ivrRcclF83GXWuG1SLutvfGfgT3zUgnFw0M7nO5wzU+2ria9i/6nwuqBSKhirwdhUjs+z ND5Visozz/64ofHh2KXfozo9S+q6r6uMxPGEePlu0rJc1ttI+YMIW+0qY5YUGkNtuXLu6h yc3fXQIJEhNz2lN/sEFp7BMUPAlvwN+06rJPOeyczFfrNifP9u6d/5UyBXt5EqgYsuSN9a lvKoYBSY2bSQFeDYOlW54JRDYZkwUIGtjt48YHWubETYKZdUeJwmVsEUwLRN+Q== Date: Fri, 08 Dec 2023 19:34:35 +0100 From: Iain Buclaw Subject: Re: [PATCH v3 2/2] libphobos: Update build scripts for LoongArch64. To: gcc-patches@gcc.gnu.org, Yang Yujie Cc: chenglulu@loongson.cn, xry111@xry111.site, xuchenghua@loongson.cn References: <20231208100942.344748-1-yangyujie@loongson.cn> <20231208100942.344748-3-yangyujie@loongson.cn> In-Reply-To: <20231208100942.344748-3-yangyujie@loongson.cn> MIME-Version: 1.0 Message-Id: <1702060425.knx2vly1q9.astroid@pulse.none> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-7.2 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE 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: Excerpts from Yang Yujie's message of Dezember 8, 2023 11:09 am: > libphobos/ChangeLog: >=20 > * m4/druntime/cpu.m4: Support loongarch* targets. > * libdruntime/Makefile.am: Same. > * libdruntime/Makefile.in: Regenerate. > * configure: Regenerate. > --- > libphobos/configure | 21 ++++++- > libphobos/libdruntime/Makefile.am | 3 + > libphobos/libdruntime/Makefile.in | 98 +++++++++++++++++++------------ > libphobos/m4/druntime/cpu.m4 | 5 ++ > 4 files changed, 87 insertions(+), 40 deletions(-) >=20 Both these patches by themselves are fine. Thanks again! Iain.