<br><br><div class="gmail_quote">On Thu, May 28, 2009 at 1:18 PM, Eli Friedman <span dir="ltr"><<a href="mailto:eli.friedman@gmail.com">eli.friedman@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
<div><div></div><div class="h5">On Thu, May 28, 2009 at 12:21 PM, Jay Bone<<a href="mailto:jbonedev@gmail.com">jbonedev@gmail.com</a>> wrote:<br>
> After doing that I get output like this below.<br>
><br>
> /home/foo/Projects/iphone/clang/llvm/tools/clang/utils/ccc-analyzer -c<br>
> --sysroot=/home/foo/Projects/iphone/toolchain/toolchain/sys<br>
> -I/home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include<br>
> src/BrowseUITableViewController.m -o BrowseUITableViewController.o<br>
> In file included from src/BrowseUITableViewController.m:1:<br>
> In file included from<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/UIKit/UIKit.h:10:<br>
> In file included from<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/UIKit/UIActivityIndicatorView.h:8:<br>
> In file included from<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/UIKit/UIView.h:10:<br>
> In file included from<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/UIKit/UIInterface.h:10:<br>
> In file included from<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/UIKit/UIColor.h:9:<br>
> In file included from<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/CoreGraphics/CoreGraphics.h:25:<br>
> In file included from<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/CoreGraphics/CGEvent.h:17:<br>
> In file included from<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/CoreServices/CoreServices.h:21:<br>
> In file included from<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/AE/AE.h:20:<br>
> In file included from<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/CarbonCore/CarbonCore.h:160:<br>
> /home/foo/Projects/iphone/toolchain/toolchain/sys/usr/include/fenv.h:41:6:<br>
> error: #error  This fenv header and set of APIs is intended for the ARM<br>
> (with VFP) architecture only.<br>
>     #error  This fenv header and set of APIs is intended for the ARM (with<br>
> VFP) architecture only.<br>
>      ^<br>
<br>
</div></div>Probably clang is using the wrong target triple; try setting CLANG to<br>
"clang -ccc-host-triple arm-apple-darwin"<br>
<font color="#888888"><br>
-Eli<br>
</font></blockquote></div><br><br>Adding this to my Makefile<br>CLANG='clang -ccc-host-triple arm-apple-darwin'<br>(Tried with and without single quotes if that matters)<br><br>I get<br><br>cannot find 'clang-cc' in 'clang' command<br>
make: *** [GridRow.o] Error 9<br><br>-J<br><br><br>