<font face="tahoma,sans-serif">I found that Xcode 4.2 does pass .s through the preprocessor, so #ifdef __arm__ works just fine too.<br clear="all"></font><span style="font-family:arial, sans-serif;font-size:13px;border-collapse:collapse"><div>
<br></div><b style="color:rgb(153, 204, 255)">Stuart Carnie, CTO</b><br><span style="color:rgb(255, 102, 0)"><strong><a href="http://manomio.com/" style="color:rgb(255, 102, 0)" target="_blank">manomio</a> | in retro we trust!</strong></span></span><br>

<br><br><div class="gmail_quote">On Sat, Nov 19, 2011 at 9:51 PM, Joerg Sonnenberger <span dir="ltr"><<a href="mailto:joerg@britannica.bec.de">joerg@britannica.bec.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">On Sat, Nov 19, 2011 at 02:14:55PM -0700, Stuart Carnie wrote:<br>
> In gcc, I'd use the following code to conditionally compile a .s file (pure<br>
> assembler) for ARM:<br>
><br>
> .set device, 0<br>
> .set device, __arm__<br>
><br>
> .if device<br>
><br>
> …<br>
><br>
> .endif<br>
><br>
> This is failing with clang 3.0 / Xcode 4.2 for simulator builds.  You can<br>
> typically do a clean, build and it works, but second time it fails.<br>
><br>
> Is there an alternative I am missing or another way to pass preprocessor<br>
> directives to the assembler?<br>
<br>
</div>foo.s is pure assembler and not pre-processed. You want to use foo.S for<br>
that. Alternatively, -x assembler-with-cpp should be usable.<br>
<br>
Joerg<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
</blockquote></div><br>