<div dir="ltr">This review <a href="https://reviews.llvm.org/D61446">https://reviews.llvm.org/D61446</a> tries hard to address your needs: it makes it possible to register a pass withing clang/opt/bugpoint with a dedicated cmake function call. The pass can then behave as a loadable plugin or be linked statically to LLVM (depending on cmake options), and the code can live out-of-tree, much like polly.</div><br><div class="gmail_quote"><div dir="ltr" class="gmail_attr">On Tue, Jul 16, 2019 at 12:01 AM Scott Pakin via llvm-dev <<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">Andrzej,<br>
<br>
On 7/14/19 8:02 AM, Andrzej Warzynski wrote:<br>
> This is still very early stages, but you can be my guinea pig:<br>
><br>
> <a href="https://github.com/banach-space/llvm-tutor" rel="noreferrer" target="_blank">https://github.com/banach-space/llvm-tutor</a><br>
><br>
> It's a tutorial that I've been preparing recently and am hoping to<br>
> present somewhere at some point :-) I believe that it already covers 1),<br>
> 2) and 3). I haven't had the time to work on 4). It's based on LLVM-8<br>
> and includes a working CI set-up, so that you can be confident that it<br>
> works. If it doesn't, ping me - I'm keen on improving it.<br>
<br>
Cool, thanks.  I just started reading over that now.  I have a couple<br>
of questions already, if you don't mind:<br>
<br>
1) I see you're building the pass with<br>
<br>
    add_library(lt-cc-static STATIC StaticCallCounter.cpp<br>
DynamicCallCounter.cpp)<br>
    add_library(lt-cc-shared MODULE StaticCallCounter.cpp<br>
DynamicCallCounter.cpp)<br>
<br>
  What's the reason for building a STATIC version?  Does any LLVM tool<br>
  make use of that?<br>
<br>
  Is add_library the preferred pass-building CMake macro these days,<br>
  as opposed to add_llvm_library or add_llvm_loadable_module?<br>
<br>
2) How is the user supposed to install the generated files?  Neither<br>
   "make install" nor "cmake --target=install" seem to work.<br>
<br>
-- Scott<br>
_______________________________________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a><br>
<a href="https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev</a><br>
</blockquote></div>