From 0c6200bcc33705854187c0cd0f939d9ff2e24a26 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sun, 15 Sep 2024 17:23:29 +0900 Subject: [PATCH] std_detect: Fix link in mips.rs --- crates/std_detect/src/detect/os/linux/mips.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/std_detect/src/detect/os/linux/mips.rs b/crates/std_detect/src/detect/os/linux/mips.rs index 9c030f41a0..f1bea38252 100644 --- a/crates/std_detect/src/detect/os/linux/mips.rs +++ b/crates/std_detect/src/detect/os/linux/mips.rs @@ -15,7 +15,7 @@ pub(crate) fn detect_features() -> cache::Initializer { // The values are part of the platform-specific [asm/hwcap.h][hwcap] // - // [hwcap]: https://github.com/torvalds/linux/blob/master/arch/arm64/include/uapi/asm/hwcap.h + // [hwcap]: https://github.com/torvalds/linux/blob/master/arch/mips/include/uapi/asm/hwcap.h if let Ok(auxv) = auxvec::auxv() { enable_feature(&mut value, Feature::msa, bit::test(auxv.hwcap, 1)); return value;