<div dir="ltr"><div>Looks like AVR is experimental, so you'll need to pass it via -DLLVM_EXPERIMENTAL_TARGETS_TO_BUILD="AVR"<br></div><div class="gmail_extra"><div class="gmail_quote"><br></div><div class="gmail_quote">As for the correct --target, you can take a look at the logic in llvm/cmake/config.guess to get an idea on how to construct one.</div><div class="gmail_quote"><br></div><div class="gmail_quote">hth...</div><div class="gmail_quote">don</div><div class="gmail_quote"><br></div><div class="gmail_quote">On Wed, Dec 13, 2017 at 2:15 AM, via cfe-users <span dir="ltr"><<a href="mailto:cfe-users@lists.llvm.org" target="_blank">cfe-users@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi, I am new to llvm, so my first question is if this is the right<br>
mailing list to address respective problems using that software.<br>
<br>
I downloaded the llvm 5.0.0 binary bundle, and I can compile simple<br>
main.c for x64_64 host.  However, when<br>
<br>
.../bin/clang main.c --target=avr<br>
error: unable to create target: 'No available targets are compatible with this triple.'<br>
1 error generated.<br>
<br>
As --help is not much help, I tried guessing around using targets<br>
elf32-avr, avr-unknown-none, all giving the same, unspecific diagnostic<br>
(so much for "extremely useful error and warning messages").<br>
<br>
<a href="https://clang.llvm.org/docs/CrossCompilation.html" rel="noreferrer" target="_blank">https://clang.llvm.org/docs/Cr<wbr>ossCompilation.html</a><br>
<br>
claims:<br>
<br>
> On the other hand, Clang/LLVM is natively a cross-compiler, meaning<br>
> that one set of programs can compile to all targets by setting the<br>
> -target option.<br>
<br>
I checked the v5.0 sources, there are plenty of modules dealing with<br>
AVR, so that target should be supported. No?<br>
<br>
So I downloaded the llvm 5.0.0 source bundle and configured for AVR:<br>
<br>
$ cmake -G "Unix Makefiles" -DLLVM_TARGETS_TO_BUILD="AVR" ../../source/llvm-5.0.0.src/<br>
<br>
But:<br>
<br>
-- Constructing LLVMBuild project information<br>
CMake Error at CMakeLists.txt:688 (message):<br>
  The target `AVR' does not exist.<br>
<br>
      It should be one of<br>
<br>
<br>
AArch64;AMDGPU;ARM;BPF;Hexagon<wbr>;Lanai;Mips;MSP430;NVPTX;<wbr>PowerPC;Sparc;SystemZ;X86;<wbr>XCore<br>
<br>
-- Configuring incomplete, errors occurred!<br>
See also ".../build/llvm-5-avr/CMakeFil<wbr>es/CMakeOutput.log".<br>
See also ".../build/llvm-5-avr/CMakeFil<wbr>es/CMakeError.log".<br>
<br>
The 5.0.0 release notes have some mention of AVR<br>
<br>
<a href="http://releases.llvm.org/5.0.0/docs/ReleaseNotes.html#changes-to-the-avr-target" rel="noreferrer" target="_blank">http://releases.llvm.org/5.0.0<wbr>/docs/ReleaseNotes.html#change<wbr>s-to-the-avr-target</a><br>
<br>
so I'd expect this target is supported?<br>
<br>
Thanks for any help.<br>
<br>
______________________________<wbr>_________________<br>
cfe-users mailing list<br>
<a href="mailto:cfe-users@lists.llvm.org" target="_blank">cfe-users@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/cfe-users</a><br>
</blockquote></div><br></div></div>