On Sun, Dec 04, 2005 at 01:14:01PM -0600, Michael Bowerman wrote:
>    The poblem ended up being that I had in my make.conf:
>    CFLAGS= -O2 -pipe
>    CXXFLAGS= -O2 -pipe
> 
>    I ended up just removing the CXXFLAGS line.  I probably cold have used
>    CXXFLAGS+=...  But, I don't think I have any needs for specific C++ flags.
> 
Yes, CXXFLAGS is an addition to CFLAGS:

CXXFLAGS        ?=      ${CFLAGS:N-std=*:N-Wnested-externs:N-W*-prototypes}

That is, anything added to CFLAGS is also added to CXXFLAGS with
some exceptions.


Cheers,
-- 
Ruslan Ermilov
[EMAIL PROTECTED]
FreeBSD committer
_______________________________________________
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to "[EMAIL PROTECTED]"

Reply via email to