From c874789613302d87b7b2667dead94c6e9540a877 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Mon, 25 Nov 2019 08:59:23 +0100 Subject: [PATCH] remove dependency from libhermit The build process of the unikernel HermitCore is redesigned and doesn't longer depend on libhermit. --- src/libstd/build.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libstd/build.rs b/src/libstd/build.rs index 1f839f165320f..8db7bc12cd308 100644 --- a/src/libstd/build.rs +++ b/src/libstd/build.rs @@ -54,7 +54,5 @@ fn main() { } println!("cargo:rustc-link-lib=c"); println!("cargo:rustc-link-lib=compiler_rt"); - } else if target.contains("hermit") { - println!("cargo:rustc-link-lib=hermit"); } }