From 08542ae288ad16134ab0ec71e418ba755ccdc1ea Mon Sep 17 00:00:00 2001 From: Robin Randhawa Date: Mon, 26 Sep 2022 17:17:32 +0100 Subject: [PATCH] aarch64: The use of yield needs the stdsimd feature apparently --- ahcid/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ahcid/src/main.rs b/ahcid/src/main.rs index 3da29c3d48..c19c60106d 100644 --- a/ahcid/src/main.rs +++ b/ahcid/src/main.rs @@ -1,3 +1,5 @@ +#![cfg_attr(target_arch = "aarch64", feature(stdsimd))] // Required for yield instruction + extern crate syscall; extern crate byteorder;