From 2402737edcc94169afb76814227696f126b71f5a Mon Sep 17 00:00:00 2001 From: Tobias Kortkamp Date: Sat, 27 Nov 2021 07:58:51 +0100 Subject: [PATCH] Support riscv64gc-unknown-freebsd --- crates/std_detect/src/detect/os/freebsd/auxvec.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/std_detect/src/detect/os/freebsd/auxvec.rs b/crates/std_detect/src/detect/os/freebsd/auxvec.rs index f12476adac..29fcc8cb0c 100644 --- a/crates/std_detect/src/detect/os/freebsd/auxvec.rs +++ b/crates/std_detect/src/detect/os/freebsd/auxvec.rs @@ -3,7 +3,8 @@ any( target_arch = "aarch64", target_arch = "arm", - target_arch = "powerpc64" + target_arch = "powerpc64", + target_arch = "riscv64" ), allow(dead_code) )]