about summary refs log tree commit diff
path: root/library/stdarch/crates/std_detect
diff options
context:
space:
mode:
authorTobias Kortkamp <t6@users.noreply.github.com>2021-11-27 14:01:23 +0000
committerGitHub <noreply@github.com>2021-11-27 14:01:23 +0000
commit972030f2b2a71d2716f17606d73e44d13fb04c58 (patch)
tree53c91a1f2db2a23e31dd08e0551d9894df375e84 /library/stdarch/crates/std_detect
parentca1f7cc1a6015ab9ecf262b2f427d131118d4a6d (diff)
downloadrust-972030f2b2a71d2716f17606d73e44d13fb04c58.tar.gz
rust-972030f2b2a71d2716f17606d73e44d13fb04c58.zip
Support riscv64gc-unknown-freebsd (#1260)
Diffstat (limited to 'library/stdarch/crates/std_detect')
-rw-r--r--library/stdarch/crates/std_detect/src/detect/os/freebsd/auxvec.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/library/stdarch/crates/std_detect/src/detect/os/freebsd/auxvec.rs b/library/stdarch/crates/std_detect/src/detect/os/freebsd/auxvec.rs
index f12476adac5..29fcc8cb0c7 100644
--- a/library/stdarch/crates/std_detect/src/detect/os/freebsd/auxvec.rs
+++ b/library/stdarch/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)
 )]