From d70a21f5b2124fecb9fb4ea55d03cf4ba372299c Mon Sep 17 00:00:00 2001 From: Paul Masurel Date: Sun, 1 May 2016 16:03:13 +0900 Subject: [PATCH] Added make to the build command. --- build.rs | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/build.rs b/build.rs index 1ebaaa1cf..24ffbe7d0 100644 --- a/build.rs +++ b/build.rs @@ -1,6 +1,13 @@ extern crate gcc; + +use std::process::Command; + fn main() { + Command::new("make") + .current_dir("cpp/SIMDCompressionAndIntersection") + .output() + .unwrap_or_else(|e| { panic!("Failed to make SIMDCompressionAndIntersection: {}", e) }); gcc::Config::new() .cpp(true) .flag("-std=c++11")