I've tried to build edi on Ubuntu, but got stuck when meson tried to find clang-c/Index.h. I figured out I needed to install libclang-dev, as hinted in the README :+1: . But I still got the error. After introspecting the meson.build, I came up with the following that makes it happy:
Since the libclang comes from a system package, I was expecting meson to find where clang was by himself, without me having to go through the dependency chain of the libclang-dev package to see where the installed files are. I realize this may not be simple to do, just letting you know :)
I've tried to build edi on Ubuntu, but got stuck when meson tried to find
clang-c/Index.h
. I figured out I needed to installlibclang-dev
, as hinted in the README :+1: . But I still got the error. After introspecting themeson.build
, I came up with the following that makes it happy:Since the libclang comes from a system package, I was expecting meson to find where clang was by himself, without me having to go through the dependency chain of the libclang-dev package to see where the installed files are. I realize this may not be simple to do, just letting you know :)