Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Windows Compilation Fixes #221

Merged
merged 5 commits into from
Aug 18, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 11 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,23 @@
os: Visual Studio 2015

platform:
- x64
- x86

environment:
NODEJS_VERSION: "6"
RUST_BACKTRACE: 1
matrix:
- NODE_ARCHITECTURE: x64
- PLATFORM: x64
NODEJS_VERSION: "6"
RUST_TOOLCHAIN: stable-x86_64-pc-windows-msvc

- NODE_ARCHITECTURE: x86
- PLATFORM: x86
NODEJS_VERSION: "6"
RUST_TOOLCHAIN: stable-i686-pc-windows-msvc
- PLATFORM: x64
NODEJS_VERSION: "8"
RUST_TOOLCHAIN: stable-x86_64-pc-windows-msvc
- PLATFORM: x86
NODEJS_VERSION: "8"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This matrix looks good & looks like AppVeyor is green!
🍀 🍀 🍀 🍀

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks, yeah I wanted to test both LTS + latest and the old configuration was doing a 2x2 matrix where you'd test x64 toolchain on a x86 machine.

RUST_TOOLCHAIN: stable-i686-pc-windows-msvc

install:
- ps: Install-Product node $env:NODEJS_VERSION $env:NODE_ARCHITECTURE
- ps: Install-Product node $env:NODEJS_VERSION $env:PLATFORM
- npm config set msvs_version 2015
- node -e "console.log(process.argv[0], process.arch, process.versions)"

Expand Down
1 change: 1 addition & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ use std::env;
fn main() {
if cfg!(windows) {
println!("cargo:node_root_dir={}", env::var("DEP_NEON_NODE_ROOT_DIR").unwrap());
println!("cargo:node_arch={}", env::var("DEP_NEON_NODE_ARCH").unwrap());
println!("cargo:node_lib_file={}", env::var("DEP_NEON_NODE_LIB_FILE").unwrap());
}
}
8 changes: 7 additions & 1 deletion crates/neon-build/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use std::env;
use std::path::Path;

/// Set up the build environment by setting Cargo configuration variables.
pub fn setup() {
Expand All @@ -7,7 +8,12 @@ pub fn setup() {
let configuration = if debug { "Debug" } else { "Release" };
let node_root_dir = env::var("DEP_NEON_RUNTIME_NODE_ROOT_DIR").unwrap();
let node_lib_file = env::var("DEP_NEON_RUNTIME_NODE_LIB_FILE").unwrap();
let node_arch = env::var("DEP_NEON_RUNTIME_NODE_ARCH").unwrap();
let node_lib_file_path = Path::new(&node_lib_file);
let mut node_lib_path = Path::new(&node_root_dir).to_path_buf();
node_lib_path.push(&node_arch);
println!("cargo:rustc-link-search={}\\{}", node_root_dir, configuration);
println!("cargo:rustc-link-lib={}", node_lib_file);
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());
}
}
1 change: 1 addition & 0 deletions crates/neon-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ cslice = "0.2"

[build-dependencies]
gcc = "0.3"
regex = "0.2"
12 changes: 9 additions & 3 deletions crates/neon-runtime/build.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
extern crate gcc;
extern crate regex;

use std::process::Command;
use std::env;
use regex::Regex;

fn main() {
// 1. Build the object file from source using node-gyp.
Expand Down Expand Up @@ -45,6 +47,9 @@ fn build_object_file() {

if cfg!(windows) {
let node_gyp_output = String::from_utf8_lossy(&output.stderr);
let version_regex = Regex::new(r"node@(?P<version>\d+\.\d+\.\d+)\s+\|\s+(?P<platform>\w+)\s+\|\s(?P<arch>ia32|x64)").unwrap();
let captures = version_regex.captures(&node_gyp_output).unwrap();
println!("cargo:node_arch={}", &captures["arch"]);
let node_root_dir_flag_pattern = "'-Dnode_root_dir=";
let node_root_dir_start_index = node_gyp_output
.find(node_root_dir_flag_pattern)
Expand All @@ -57,8 +62,9 @@ fn build_object_file() {
.find(node_lib_file_flag_pattern)
.map(|i| i + node_lib_file_flag_pattern.len())
.expect("Couldn't find node_lib_file in node-gyp output.");
let node_lib_file_end_index = node_gyp_output[node_lib_file_start_index..].find(".lib").unwrap() + node_lib_file_start_index;
println!("cargo:node_lib_file={}", &node_gyp_output[node_lib_file_start_index..node_lib_file_end_index]);
let node_lib_file_end_index = node_gyp_output[node_lib_file_start_index..].find("'").unwrap() + node_lib_file_start_index;
let node_lib_file = &node_gyp_output[node_lib_file_start_index..node_lib_file_end_index];
println!("cargo:node_lib_file={}", node_lib_file);
}

// Run `node-gyp build`.
Expand All @@ -78,7 +84,7 @@ fn link_library() {
format!("build\\{}\\obj\\neon\\neon.obj", configuration)
};

gcc::Config::new().object(object_path).compile("libneon.a");
gcc::Build::new().object(object_path).compile("libneon.a");
}

fn debug() -> bool {
Expand Down