syntax: Build C++ grammars as c++14
The haskell grammar requires at last c++14 to build. Fixes #117
This commit is contained in:
parent
8f78c0c612
commit
72eaaaac99
1 changed files with 2 additions and 1 deletions
|
@ -63,7 +63,8 @@ fn build_cpp(files: Vec<String>, language: &str) {
|
|||
.include(PathBuf::from(file).parent().unwrap())
|
||||
.pic(true)
|
||||
.warnings(false)
|
||||
.cpp(true);
|
||||
.cpp(true)
|
||||
.flag("-std=c++14");
|
||||
}
|
||||
build.compile(&format!("tree-sitter-{}-cpp", language));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue