From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9C8A6C43334 for ; Thu, 9 Jun 2022 12:57:51 +0000 (UTC) Received: from localhost ([::1]:43050 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1nzHjS-00019G-Gy for qemu-devel@archiver.kernel.org; Thu, 09 Jun 2022 08:57:50 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:56458) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nzF8e-0007Zf-S1 for qemu-devel@nongnu.org; Thu, 09 Jun 2022 06:11:41 -0400 Received: from mail.xen0n.name ([115.28.160.31]:54600 helo=mailbox.box.xen0n.name) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1nzF8c-0007fz-MS for qemu-devel@nongnu.org; Thu, 09 Jun 2022 06:11:40 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=xen0n.name; s=mail; t=1654769491; bh=kEs30DEEDJDThBNkrIyw2BZ7ByGWanqV4PRozAJJcXM=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=tNtg+FoB/bIVS7XzXhqVUzfEUxG4FiPss6kD6rv7FWEUTgngcPKVKk/Zq1n+QPOIr FVgTJVXPuaot/BnMPj4dLbDPl8qXIVCep/GhzPgUgOQrtn1MTnhK0/0Q4ZBQ4qITfu MEMmHnhw5fS658zcluziTdevB9HQl8ZkdqNe+lvc= Received: from [100.100.57.190] (unknown [220.248.53.61]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by mailbox.box.xen0n.name (Postfix) with ESMTPSA id 8EFAA60694; Thu, 9 Jun 2022 18:11:31 +0800 (CST) Message-ID: <9a5d26df-1820-f8c6-c876-a977d252b95f@xen0n.name> Date: Thu, 9 Jun 2022 18:11:31 +0800 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:103.0) Gecko/20100101 Thunderbird/103.0a1 Subject: Re: [PATCH v15 6/9] default-configs: Add loongarch linux-user support Content-Language: en-US To: Song Gao , qemu-devel@nongnu.org Cc: richard.henderson@linaro.org, laurent@vivier.eu, Xiaojuan Yang References: <20220609024209.2406188-1-gaosong@loongson.cn> <20220609024209.2406188-7-gaosong@loongson.cn> From: WANG Xuerui In-Reply-To: <20220609024209.2406188-7-gaosong@loongson.cn> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Received-SPF: pass client-ip=115.28.160.31; envelope-from=i.qemu@xen0n.name; helo=mailbox.box.xen0n.name X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, NICE_REPLY_A=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: "Qemu-devel" On 2022/6/9 10:42, Song Gao wrote: > This patch adds loongarch64 linux-user default configs file. > > Signed-off-by: Song Gao > Signed-off-by: Xiaojuan Yang > Reviewed-by: Richard Henderson > --- > configs/targets/loongarch64-linux-user.mak | 3 +++ > 1 file changed, 3 insertions(+) > create mode 100644 configs/targets/loongarch64-linux-user.mak > > diff --git a/configs/targets/loongarch64-linux-user.mak b/configs/targets/loongarch64-linux-user.mak > new file mode 100644 > index 0000000000..7d1b964020 > --- /dev/null > +++ b/configs/targets/loongarch64-linux-user.mak > @@ -0,0 +1,3 @@ > +# Default configuration for loongarch64-linux-user > +TARGET_ARCH=loongarch64 > +TARGET_BASE_ARCH=loongarch Simple enough. Reviewed-by: WANG Xuerui