From mboxrd@z Thu Jan 1 00:00:00 1970 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> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2234550794500761273==" List-Id: --===============2234550794500761273== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit 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 -- 2.30.2 --===============2234550794500761273==--