From 63bde5590f38625e983b82afec4ea008fe1b9d95 Mon Sep 17 00:00:00 2001 From: frankplow Date: Thu, 15 Aug 2024 10:42:02 +0100 Subject: [PATCH] Use `Generic` for bare-metal systems (#187) --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 90ac420..0f9b89a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -491,6 +491,7 @@ impl Config { ("windows", "x86_64") => ("Windows", "AMD64"), ("windows", "x86") => ("Windows", "X86"), ("windows", "aarch64") => ("Windows", "ARM64"), + ("none", arch) => ("Generic", arch), // Others (os, arch) => (os, arch), };