From 20e9b300ba4b26e73e825d52d15fb040374a125a Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 20 Aug 2017 20:10:16 -0700 Subject: [PATCH] Don't disable stdio This also breaks BIO_s_file which we need. --- src/lib.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 33b02381..362e79e5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -113,11 +113,6 @@ impl Build { configure.arg("no-shared"); } } else { - // If we're *not* on MSVC then we can optimize our build a bit by - // avoiding building the CLI tools. Unfortunately though on MSVC if - // we pass this option the build breaks oddly... - configure.arg("no-stdio"); - // Never shared on non-MSVC configure.arg("no-shared"); }