From e7534b40825d41cc43e765296bae10d0103bd81c Mon Sep 17 00:00:00 2001 From: Melvin Wang Date: Wed, 15 Jan 2025 15:59:27 -0800 Subject: [PATCH] fix: correct type casing for CPUArchitecture in binary build configuration --- crates/wdk-build/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/wdk-build/src/lib.rs b/crates/wdk-build/src/lib.rs index 8e3960f8..73b31381 100644 --- a/crates/wdk-build/src/lib.rs +++ b/crates/wdk-build/src/lib.rs @@ -700,7 +700,7 @@ impl Config { // Emit ARM64-specific libraries to link to derived from // WindowsDriver.arm64.props - if self.cpu_architecture == CpuArchitecture::ARM64 { + if self.cpu_architecture == CpuArchitecture::Arm64 { println!("cargo::rustc-link-lib=static=arm64rt"); } @@ -725,7 +725,7 @@ impl Config { // Emit ARM64-specific libraries to link to derived from // WindowsDriver.arm64.props - if self.cpu_architecture == CpuArchitecture::ARM64 { + if self.cpu_architecture == CpuArchitecture::Arm64 { println!("cargo::rustc-link-lib=static=arm64rt"); }