On Tue, Sep 11, 2012 at 1:44 PM, Mark Linimon <lini...@lonesome.com> wrote:
> On Tue, Sep 11, 2012 at 10:07:04AM +0100, David Chisnall wrote:
>> There is some logic in the clang driver already for knowing when it is
>> invoked as gcc.  I'd be quite tempted to make gcc a symlink to clang
>> and make clang default to gnu89 when invoked in that way.
>
> And how then does a port say "I don't compile with clang no matter how
> it is invoked"?

Here's one way:

$ clang -dumpspecs
clang: error: unsupported option '-dumpspecs'
clang: error: no input files
$ gcc -dumpspecs | grep -q gcc && echo "gotcha"
gotcha
$

Also,

$ cat Makefile
.if !empty(CC:M*clang*) || !empty(CXX:M*clang*)
IGNORE=         does not compile with clang
.warning ${IGNORE}
.endif

all:
$ make CXX=clang++
"Makefile", line 3: warning: does not compile with clang
$ make CXX=g++
$

But I figured that's probably done elsewhere I bit more sanely.

Thanks,
-Garrett
_______________________________________________
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Reply via email to