Skip to content

Commit

Permalink
Merge pull request #506 from usagi/fix-463-debug-build-mode-in-windows
Browse files Browse the repository at this point in the history
Fix #463 ; Debug build mode fixing in Windows
  • Loading branch information
dherman committed May 8, 2020
2 parents ec46747 + 53f540d commit 326c0cb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 5 additions & 0 deletions crates/neon-build/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ cfg_if! {
println!("cargo:rustc-link-search=native={}", &node_lib_path.display());
println!("cargo:rustc-link-lib={}", &node_lib_file_path.file_stem().unwrap().to_str().unwrap());

if cfg!(target_env = "msvc") && debug
{
println!("cargo:rustc-link-lib=msvcrtd");
}

// Link `win_delay_load_hook.obj` for windows electron
let node_runtime_env = "npm_config_runtime";
println!("cargo:rerun-if-env-changed={}", node_runtime_env);
Expand Down
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -352,9 +352,6 @@ macro_rules! neon_stringify {
}
}

#[cfg(all(windows, not(neon_profile = "release")))]
compile_error!("Neon only builds with --release. For tests, try `cargo test --release`.");

#[cfg(test)]
mod tests {
extern crate rustversion;
Expand Down

0 comments on commit 326c0cb

Please sign in to comment.