From 7e6675d56effa6177eaf387b13942c8219107ae1 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Thu, 17 May 2018 17:23:35 -0700 Subject: [PATCH] Use a more unique library name when building C sources --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index fa8b41ea..4e2c3b8f 100644 --- a/build.rs +++ b/build.rs @@ -40,5 +40,5 @@ fn main() { config.file(parser_dir.join("scanner.c")); } - config.compile("libruntime.a") + config.compile("treesitter") }