From patchwork Tue Feb 22 12:51:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tremer X-Patchwork-Id: 5262 Return-Path: Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by web04.haj.ipfire.org (Postfix) with ESMTPS id 4K2zbV0xYDz3xgV for ; Tue, 22 Feb 2022 12:52:38 +0000 (UTC) Received: from mail02.haj.ipfire.org (mail02.haj.ipfire.org [172.28.1.201]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail02.haj.ipfire.org", Issuer "R3" (verified OK)) by mail01.ipfire.org (Postfix) with ESMTPS id 4K2zZv34Tqz5bY; Tue, 22 Feb 2022 12:52:07 +0000 (UTC) Received: from mail02.haj.ipfire.org (localhost [127.0.0.1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4K2zZv08Jbz32MY; Tue, 22 Feb 2022 12:52:07 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) client-signature ECDSA (P-384)) (Client CN "mail01.haj.ipfire.org", Issuer "R3" (verified OK)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4K2zZj4PvVz32N9 for ; Tue, 22 Feb 2022 12:51:57 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-384) server-digest SHA384) (No client certificate requested) by mail01.ipfire.org (Postfix) with ESMTPSA id 4K2zZj2KMmz2RB; Tue, 22 Feb 2022 12:51:57 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1645534317; 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=YKuw5hAWv1n2J5rSmCo66XR+FbMYG81y9YQiEFl/Yw8=; b=pox/XyWgiwEHtWGB14FrYcfi+RC2GO4f9g8lyhJDo0/jjZAFlgSMQnNRie94U/UEG+gKfk hFunR9Nc/P952DDA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1645534317; 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=YKuw5hAWv1n2J5rSmCo66XR+FbMYG81y9YQiEFl/Yw8=; b=g+Y5ZkMCou4aojLjnxWFiUpMF20EaN1sCmUo6tdt7W/P0UeQk92tR5K5d17BZWr/KlLSGm G8VNuW8XWYV9vCL8e8Br1hHdHOFaucbLvjkQhoDMP7vXb48/Cd7rtt204YwGqUq48jJzGi gVNjdSuePmmUeXSU0WEXL6MSU3Dj+js1ttcj+5SOmHgldr7+WGcyqK/SjMYlIiD9NkaM3Z IEVhxpau8RLKqeHuXz251TFXhWYVs4jXVLBzVYzyz5H+Z16i1jp2WdC6aUoQ6z/DPvDsl6 QxftUdl/mMHw8RZ/D4PLO+YXOl/caH3+qYBZXbDONI6TwhFlZVTSV8auWB6n6w== From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 43/50] rust: Rust's arch for riscv64 is called riscv64gc Date: Tue, 22 Feb 2022 12:51:28 +0000 Message-Id: <20220222125135.1211290-44-michael.tremer@ipfire.org> In-Reply-To: <20220222125135.1211290-1-michael.tremer@ipfire.org> References: <20220222125135.1211290-1-michael.tremer@ipfire.org> MIME-Version: 1.0 X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Michael Tremer Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Michael Tremer --- lfs/Config | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lfs/Config b/lfs/Config index 92d719892..9309b832d 100644 --- a/lfs/Config +++ b/lfs/Config @@ -157,7 +157,11 @@ ifeq "$(BUILD_ARCH)" "aarch64" endif # Rust -RUST_ARCH = $(BUILD_ARCH) +ifeq "$(BUILD_ARCH)" "riscv64" + RUST_ARCH = riscv64gc +else + RUST_ARCH = $(BUILD_ARCH) +endif ifeq "$(BUILD_ARCH)" "armv6l" RUST_PLATFORM = arm-unknown-linux-gnueabi