From owner-freebsd-doc@FreeBSD.ORG Sat Sep 4 13:20:23 2004 Return-Path: Delivered-To: freebsd-doc@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C415F16A4CE for ; Sat, 4 Sep 2004 13:20:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B014B43D4C for ; Sat, 4 Sep 2004 13:20:23 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.11/8.12.11) with ESMTP id i84DKNe5006623 for ; Sat, 4 Sep 2004 13:20:23 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i84DKNuG006622; Sat, 4 Sep 2004 13:20:23 GMT (envelope-from gnats) Date: Sat, 4 Sep 2004 13:20:23 GMT Message-Id: <200409041320.i84DKNuG006622@freefall.freebsd.org> To: freebsd-doc@FreeBSD.org From: Giorgos Keramidas Subject: Re: docs/71359: /usr/share/examples/etc/make.conf contains broken CXXFLAGS X-BeenThere: freebsd-doc@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Giorgos Keramidas List-Id: Documentation project List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Sep 2004 13:20:23 -0000 The following reply was made to PR docs/71359; it has been noted by GNATS. From: Giorgos Keramidas To: Chris Pepper , Paul Mather Cc: bug-followup@freebsd.org Subject: Re: docs/71359: /usr/share/examples/etc/make.conf contains broken CXXFLAGS Date: Sat, 4 Sep 2004 15:46:52 +0300 On 2004-09-03 23:31, Chris Pepper wrote: > >Description: > /usr/share/examples/etc/make.conf suggests: > CXXFLAGS+= -fmemoize-lookups -fsave-memoized > but this prevents make buildworld in RELENG_5. > [...] > >Fix: > Remove this sample from the example, or replace it with one that's > safe under RELENG_5 You don't *have* to use the same CXXFLAGS options as the ones of the example. It's an example, after all. Anyway, would you prefer something like this instead? # CXXFLAGS controls the compiler settings used when compiling C++ code. # Note that CXXFLAGS is initially set to the value of CFLAGS. If you wish # to add to CXXFLAGS value, "+=" must be used rather than "=". Using "=" # alone will remove the often needed contents of CFLAGS from CXXFLAGS. +# For a description of the options recognized by the GNU C++ compiler +# please refer to the c++(1) manpage and the info documentation of GCC. # -#CXXFLAGS+= -fmemoize-lookups -fsave-memoized +#CXXFLAGS+= -O -pipe