Browse Source

openbsd: doesn't use `static` as it could result duplicated symbols

Sébastien Marie 6 years ago
parent
commit
ffffe2ed64
1 changed files with 1 additions and 1 deletions
  1. 1 1
      build.rs

+ 1 - 1
build.rs

@@ -13,7 +13,7 @@ fn main() {
     // OpenBSD provides compiler_rt by default, use it instead of rebuilding it from source
     if target.contains("openbsd") {
         println!("cargo:rustc-link-search=native=/usr/lib");
-        println!("cargo:rustc-link-lib=static=compiler_rt");
+        println!("cargo:rustc-link-lib=compiler_rt");
         return;
     }