I am trying to install clang
from source following the instructions as given in http://clang.llvm.org/get_started.html ( Steps 1-4 and 7) in Ubuntu 14.04
Inside the build directory , I ran make
which succeeded. I wasn't sure what to do after that , so I ran make install
inside the build
directory, following which I got this cmake
error:
There is no executable named clang
in /build/bin
folder anyway, but I can find others like clang-check
, clang-query
, etc. What's going wrong?
PS: My main requirment is to experiment with alpha security checkers of clang
analyzer and also write my own checker later.