Skip to content

Commit

Permalink
fix: correct type casing for CPUArchitecture in binary build configur…
Browse files Browse the repository at this point in the history
…ation
  • Loading branch information
wmmc88 committed Jan 15, 2025
1 parent 397e416 commit e7534b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/wdk-build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}

Expand All @@ -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");
}

Expand Down

0 comments on commit e7534b4

Please sign in to comment.