Wilfred Hughes
Wilfred Hughes
@ihoru that sounds like a separate issue, but note that the difftastic binary is called `difft`, you're probably running an extremely old version I'm guessing.
FWIW we're seeing build failures here: ``` error: no member named '__openat_2' in the global namespace ``` and openat_2 has existed since at least glibc 2.7: https://github.com/bminor/glibc/blob/glibc-2.7/include/fcntl.h#L29 Are you sure...
https://crates.io/crates/tree-sitter-loader looks very relevant here.
I think this is a duplicate of #123. Thanks for the super helpful comments here :)
I disagree: the parser I'm currently using is actively maintained and the maintainer has been helpful when I've sent build fixes. I'm not necessarily opposed to changing parsers, but how...
#119 would be the first step for this.
Thanks, I'll give that a try. I was even wondering if doing something like ``` #ifdef USE_DISPATCH dispatch_apply(...) #else for { ... } #endif ``` would make sense. Do you...
FWIW we hit the same error relatively often in our last release, but it's fixed on master. Bisecting suggests that 50384460c68f9c2aaa9148a9131480c07c933c91 has fixed it. My minimal repro program was: ```...
See also #871
Yeah, sorry the repo is so big. All the git subtrees with checked in generated C code has massively ballooned the size. Cloning with a depth limit is much better,...