You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 👍 . 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 :)
The text was updated successfully, but these errors were encountered:
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 👍 . But I still got the error. After introspecting themeson.build
, I came up with the following that makes it happy:meson -Dlibclang-headerdir=/usr/lib/llvm-4.0/include/ -Dlibclang-libdir=/usr/lib/llvm-4.0/lib/ . build
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 :)
The text was updated successfully, but these errors were encountered: