mirror of
https://github.com/quickwit-oss/tantivy.git
synced 2026-05-21 18:50:42 +00:00
Added make to the build command.
This commit is contained in:
7
build.rs
7
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")
|
||||
|
||||
Reference in New Issue
Block a user