<html>
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
    <p><font size="-1">Keeping cfe-dev in the loop.</font></p>
    <p><font size="-1">Just emailed clang-tblgen to Jakov Smolic.</font></p>
    <p><font size="-1">Neil Nelson<br>
      </font></p>
    <div class="moz-cite-prefix"><font size="-1">On 7/10/20 3:25 AM,
        Jakov Smolic via cfe-dev wrote:</font><br>
    </div>
    <blockquote type="cite"
cite="mid:CAJRasQXQ1JfHU3avrGFRqnhDJ8bNTWTL0m2GENqUtOMc-CyUJg@mail.gmail.com">
      <pre class="moz-quote-pre" wrap="">On Thu, Jul 9, 2020 at 6:42 PM Neil Nelson via cfe-dev
<a class="moz-txt-link-rfc2396E" href="mailto:cfe-dev@lists.llvm.org"><cfe-dev@lists.llvm.org></a> wrote:
</pre>
      <blockquote type="cite">
        <pre class="moz-quote-pre" wrap="">
Just noticed a clang-tblgen after a compile of llvm and clang using the clang-llvm documented method.

/home/nnelson/Documents/llvm-project/build/bin/clang-tblgen

It is apparently not copied to /usr/bin/local during the install after a local build, but if you have that file, you could manually copy it and it might be found for your purpose.
</pre>
      </blockquote>
      <pre class="moz-quote-pre" wrap="">Ok, so that is likely the issue here, the fact that this file is not
copied to the directory.

</pre>
      <blockquote type="cite">
        <pre class="moz-quote-pre" wrap="">If you do not have that file, we may need to come up with a different plan. The first one that comes to mind is to build clang-llvm using the documented method and then do the copy and continue with what you are doing. The second one, in a stretch, might > be to get the file from a download, depending on the hardware you are using. There is a reasonably good chance I could copy the file I have here to you from this x86_64.
</pre>
      </blockquote>
      <pre class="moz-quote-pre" wrap="">
I don't have that file now on my local system now. Copying the file
should work as I am currently building the image for x86_64 platform,
but I think the best solution for my use-case would be to patch the
Gentoo package so that the `tblgen` binary is installed along with
other clang components. I am building Gentoo-based images for embedded
devices inside of a dockerized build system and use Gentoo packaging
to add software to the images, so maybe the simplest solution would be
to patch the Gentoo package.
I suspect that there is a CMake option missing from the Gentoo ebuild
or something else that prevents the `tblgen` binary from being
installed. I've also inquired about this to the Gentoo upstream but I
haven't received any input from Gentoo developers yet.

Could you provide me with the steps you performed to install the
`tblgen` binary, I can compare it then and see if there is something
missing from the Gentoo package.

Thank you for helping me!
Regards,
Jakov Smolic



</pre>
      <blockquote type="cite">
        <pre class="moz-quote-pre" wrap="">Neil Nelson

On 7/9/20 9:48 AM, Jakov Smolic via cfe-dev wrote:

On Ubuntu 20.04 I have

/usr/bin/llvm-tblgen
/usr/bin/llvm-tblgen-10
/usr/lib/llvm-10/bin/llvm-tblgen
/usr/local/bin/llvm-tblgen

Yes, I have those binaries as well. `llvm-tblgen` is, unlike
`clang-tblgen`, installed as part of the llvm package in Gentoo. I can
successfully cross-compile llvm. Likewise as clang, llvm requires the
`tblgen` binary for cross-compiling, but it's not an issue as it is
installed along with other llvm components.

The first three were installed from the distribution. The last was
compiled from the llvm-project at github. I do not have a
clang- tblgen.

Is your sequence something like this?

<a class="moz-txt-link-freetext" href="https://github.com/llvm/llvm-project">https://github.com/llvm/llvm-project</a>
git clone <a class="moz-txt-link-freetext" href="https://github.com/llvm/llvm-project.git">https://github.com/llvm/llvm-project.git</a>
cd llvm-project

And then what do you do?

I did not perform it directly like that, rather as part of the
packaging, but Gentoo, being source-based distribution, downaloads the
source and compiles the components from there, and sets some CMake
options [1].

Regards,
Jakov Smolic


[1] <a class="moz-txt-link-freetext" href="https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-devel/llvm/llvm-10.0.0.ebuild#n249">https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-devel/llvm/llvm-10.0.0.ebuild#n249</a>
_______________________________________________
cfe-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>
<a class="moz-txt-link-freetext" href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a>

_______________________________________________
cfe-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>
<a class="moz-txt-link-freetext" href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a>
</pre>
      </blockquote>
      <pre class="moz-quote-pre" wrap="">
On Thu, Jul 9, 2020 at 6:42 PM Neil Nelson via cfe-dev
<a class="moz-txt-link-rfc2396E" href="mailto:cfe-dev@lists.llvm.org"><cfe-dev@lists.llvm.org></a> wrote:
</pre>
      <blockquote type="cite">
        <pre class="moz-quote-pre" wrap="">
Just noticed a clang-tblgen after a compile of llvm and clang using the clang-llvm documented method.

/home/nnelson/Documents/llvm-project/build/bin/clang-tblgen

It is apparently not copied to /usr/bin/local during the install after a local build, but if you have that file, you could manually copy it and it might be found for your purpose.

If you do not have that file, we may need to come up with a different plan. The first one that comes to mind is to build clang-llvm using the documented method and then do the copy and continue with what you are doing. The second one, in a stretch, might be to get the file from a download, depending on the hardware you are using. There is a reasonably good chance I could copy the file I have here to you from this x86_64.

Neil Nelson

On 7/9/20 9:48 AM, Jakov Smolic via cfe-dev wrote:

On Ubuntu 20.04 I have

/usr/bin/llvm-tblgen
/usr/bin/llvm-tblgen-10
/usr/lib/llvm-10/bin/llvm-tblgen
/usr/local/bin/llvm-tblgen

Yes, I have those binaries as well. `llvm-tblgen` is, unlike
`clang-tblgen`, installed as part of the llvm package in Gentoo. I can
successfully cross-compile llvm. Likewise as clang, llvm requires the
`tblgen` binary for cross-compiling, but it's not an issue as it is
installed along with other llvm components.

The first three were installed from the distribution. The last was
compiled from the llvm-project at github. I do not have a
clang- tblgen.

Is your sequence something like this?

<a class="moz-txt-link-freetext" href="https://github.com/llvm/llvm-project">https://github.com/llvm/llvm-project</a>
git clone <a class="moz-txt-link-freetext" href="https://github.com/llvm/llvm-project.git">https://github.com/llvm/llvm-project.git</a>
cd llvm-project

And then what do you do?

I did not perform it directly like that, rather as part of the
packaging, but Gentoo, being source-based distribution, downaloads the
source and compiles the components from there, and sets some CMake
options [1].

Regards,
Jakov Smolic


[1] <a class="moz-txt-link-freetext" href="https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-devel/llvm/llvm-10.0.0.ebuild#n249">https://gitweb.gentoo.org/repo/gentoo.git/tree/sys-devel/llvm/llvm-10.0.0.ebuild#n249</a>
_______________________________________________
cfe-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>
<a class="moz-txt-link-freetext" href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a>

_______________________________________________
cfe-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>
<a class="moz-txt-link-freetext" href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a>
</pre>
      </blockquote>
      <pre class="moz-quote-pre" wrap="">_______________________________________________
cfe-dev mailing list
<a class="moz-txt-link-abbreviated" href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a>
<a class="moz-txt-link-freetext" href="https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev">https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a>
</pre>
    </blockquote>
  </body>
</html>