From def6f3282742b6f82216025637bdfe485c145afd Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Mon, 12 Aug 2024 07:53:07 -0700 Subject: [PATCH] wasmtime build.rs: remove rustc-link-lib=m (#9100) prtest:full --- crates/wasmtime/build.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/crates/wasmtime/build.rs b/crates/wasmtime/build.rs index f56ce2b2cacf..e2572c9cc7ad 100644 --- a/crates/wasmtime/build.rs +++ b/crates/wasmtime/build.rs @@ -35,8 +35,4 @@ fn build_c_helpers() { println!("cargo:rerun-if-changed=src/runtime/vm/helpers.c"); build.file("src/runtime/vm/helpers.c"); build.compile("wasmtime-helpers"); - - if os == "linux" { - println!("cargo:rustc-link-lib=m"); - } }