Skip to content

Commit

Permalink
Feature flag fix for 32-bit
Browse files Browse the repository at this point in the history
  • Loading branch information
kornelski committed Jun 23, 2024
1 parent dbb78b1 commit ed62a8b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions rust/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ fn main() {
cc.define("DEBUG", Some("1"));
}

if target_arch == "x86_64" ||
(target_arch == "x86" && cfg!(feature = "sse")) {
if target_arch == "x86_64" || target_arch == "x86" {
cc.define("USE_SSE", Some("1"));
}

Expand Down

0 comments on commit ed62a8b

Please sign in to comment.