Skip to content

Commit 3eba7ac

Browse files
author
Dave Herman
committed
since this PR requires rust >= 1.15 (because of rust-lang/rust#38811) in Windows, eliminate the workaround hack for the rust issue that's been fixed.
1 parent e6e1115 commit 3eba7ac

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

crates/neon-runtime/build.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
extern crate gcc;
22

3-
use std::process::{Command, Stdio};
3+
use std::process::Command;
44
use std::env;
55

66
fn main() {
@@ -61,9 +61,8 @@ fn build_object_file() {
6161
println!("cargo:node_lib_file={}", &node_gyp_output[node_lib_file_start_index..node_lib_file_end_index]);
6262
}
6363

64-
// Run `node-gyp build` (appending -d in debug mode).
64+
// Run `node-gyp build`.
6565
npm()
66-
.stderr(Stdio::null()) // Prevents cargo build from hanging on Windows.
6766
.args(&["run", if debug() { "build-debug" } else { "build-release" }])
6867
.status()
6968
.ok()

0 commit comments

Comments
 (0)