<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 14 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:"Segoe UI";
        panose-1:2 11 5 2 4 2 4 2 2 3;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p.MsoListParagraph, li.MsoListParagraph, div.MsoListParagraph
        {mso-style-priority:34;
        margin-top:0in;
        margin-right:0in;
        margin-bottom:0in;
        margin-left:.5in;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";}
span.EmailStyle17
        {mso-style-type:personal-compose;
        font-family:"Segoe UI","sans-serif";
        color:#111111;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-family:"Calibri","sans-serif";}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">Hi,<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">I’m looking for some guidance in adding/using the AVR LLVM backend with Clang. I don’t know if this is more appropriate for the llvm-dev list, so feel free to point me that
 way if this has nothing to do with Clang. <o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">My understanding is that the latest LLVM trunk supports the AVR backend, so I checked out the source and tried building it. I stumbled across a few posts online mentioning
 that the list of LLVM targets is specified in the top-level CMakeLists file. AVR isn’t in the list on the trunk, so I added it and ran CMake with -DLLVM_TARGETS_TO_BUILD=AVR. This works and prints out ‘-- Targetting AVR’, so it certainly
<i>looks </i>like this is working. During compilation, I also seem a promising list of targets being built — AVRCommonTableGen, LLVMAVRCodeGen, etc.
<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">Is this all it takes to build in the backend? I’ve tried using it but haven’t had any luck. I’ll give a few examples.
<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">> clang --target=avr main.c -o main.o<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">error: unable to create target: 'No available targets are compatible with this triple.'<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">1 error generated.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">> clang --target=avx main.c -o main.o<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">error: unknown target triple 'avx', please use -triple or -arch<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">My dummy target generates a different error than when I pass in avr, so again, it looks like LLVM/Clang has
<i>some </i>understanding that AVR targets are supported.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">I understand that before being integrated into the trunk, the backend was implemented as the ‘avr-llvm’ project. Looking at its wiki, the guide says to pass the ‘-mmcu’ flag
 to Clang. This doesn’t seem to work either<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">> clang --target=avr  main.c -o main.o -mmcu=atmega1284p<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">clang-5.0: error: unknown argument: '-mmcu=atmega1284p'<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">Also, this may be irrelevant, but the string ‘mmcu’ doesn’t appear anywhere in the Targets/AVR source directory. This makes me think that the calling convention may have changed.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">Finally, my output from ‘llc --version’ does not show ‘avr’ as a registered target. This seems like it is very important, but again, I don’t really know.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">Any help would be appreciated. Does it look like I configured the build properly with CMake? Am I passing the wrong arguments to Clang? Is the AVR backend not fully integrated?<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111">Thanks!<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-family:"Segoe UI","sans-serif";color:#111111"><o:p></o:p></span></p>
</div>
</body>
</html>