Change name of generated parser files
The previous name, parser.c made it harder to set breakpoints inside of src/runtime/parser.c in LLDB
This commit is contained in:
parent
7c44b0e387
commit
e3d65d5cbd
1 changed files with 1 additions and 1 deletions
|
|
@ -59,7 +59,7 @@ const TSLanguage *load_language(const string &name, const string &code) {
|
|||
return nullptr;
|
||||
}
|
||||
|
||||
string source_filename = string(temp_directory) + "/parser.c";
|
||||
string source_filename = string(temp_directory) + "/generated-parser.c";
|
||||
string obj_filename = string(source_filename) + ".o";
|
||||
string lib_filename = string(source_filename) + ".so";
|
||||
string header_dir = string(getenv("PWD")) + "/include";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue