Is it possible to build a clang plugin using an already built version of clang?
I've done all the steps to download and build clang but I don't know how to set up a tool so that the Makefile
doesn't traverse the entire llvm and clang directories each time that I compile my tool (traversing the Makefile
seems to take about as long as building my single file plugin).
Thanks.