Skip to content

Commit

Permalink
Remove realloc feature guard in build script
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcrichton committed Mar 1, 2024
1 parent 21ab6bb commit ea830e0
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions crates/guest-rust/rt/build.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
fn main() {
if !cfg!(feature = "realloc") {
return;
}

let target_arch = std::env::var("CARGO_CFG_TARGET_ARCH").unwrap_or(String::new());
let target_family = std::env::var("CARGO_CFG_TARGET_FAMILY").unwrap_or(String::new());

Expand Down

0 comments on commit ea830e0

Please sign in to comment.