[cfe-dev] Using clang static analyzer on linux with Objective C for arm-apple-darwin9-gcc

Jay Bone jbonedev at gmail.com
Thu May 28 21:41:37 PDT 2009


On Thu, May 28, 2009 at 1:57 PM, Eli Friedman <eli.friedman at gmail.com>wrote:

> On Thu, May 28, 2009 at 1:36 PM, Jay Bone<jbonedev at gmail.com> wrote:
> >
> >
> > On Thu, May 28, 2009 at 1:18 PM, Eli Friedman <eli.friedman at gmail.com>
> > wrote:
> >> Probably clang is using the wrong target triple; try setting CLANG to
> >> "clang -ccc-host-triple arm-apple-darwin"
> >>
> >> -Eli
> >
> >
> > Adding this to my Makefile
> > CLANG='clang -ccc-host-triple arm-apple-darwin'
> > (Tried with and without single quotes if that matters)
> >
> > I get
> >
> > cannot find 'clang-cc' in 'clang' command
> > make: *** [GridRow.o] Error 9
>
> Ah, bleh, I didn't actually test this before I suggested it.  Try r72538.
>
>
So I've fixed my header problems (I think) by supplying scan-build with
--use-cc to point to my cross compiler, and I've hacked
clang/lib/Frontend/InitHeaderSearch.cpp to remove the system default paths
and then AddPath() paths to my alternate headers used by my cross compiler
which was built with --with-sysroot.

I'm still stuck on this
    #error  This fenv header and set of APIs is intended for the ARM (with
VFP) architecture only.

Setting CLANG to
CLANG=clang -ccc-host-triple arm-apple-darwin
Gives me the above error:
cannot find 'clang-cc' in 'clang' command

Trying the older revision  r72538.did not help solve the problem.

Is there some way I could hack the source directly to force the host triple
to arm-apple-darwin? Where would I do that?
Can I hard code this directly in Driver.cpp
const HostInfo *Driver::GetHostInfo(const char *TripleStr)


Thanks

-J











> -Eli
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-dev/attachments/20090528/a018d467/attachment.html>


More information about the cfe-dev mailing list