From 4138a6527020e879d5bf9b5f9228e243c07d3873 Mon Sep 17 00:00:00 2001 From: Simon Renblad Date: Mon, 14 Oct 2024 13:47:25 +0800 Subject: [PATCH] fix xbuild target features --- .cargo/config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config b/.cargo/config index 2b26448..61f32b3 100644 --- a/.cargo/config +++ b/.cargo/config @@ -1,7 +1,7 @@ [target.armv7-none-eabihf] rustflags = [ "-C", "link-arg=-Tlink.x", - "-C", "target-feature=a9,armv7-a,neon", + "-C", "target-feature=+a9,+armv7-a,+neon", "-C", "target-cpu=cortex-a9", ]