Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Apr 2002 04:06:05 +1000 (EST)
From:      Bruce Evans <bde@zeta.org.au>
To:        Alexander Leidinger <Alexander@Leidinger.net>
Cc:        current@FreeBSD.ORG
Subject:   Re: kern.pre.mk, bug or intended?
Message-ID:  <20020403040250.K7472-100000@gamplex.bde.org>
In-Reply-To: <200204021633.g32GX94D025300@Magelan.Leidinger.net>

next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 2 Apr 2002, Alexander Leidinger wrote:

> Hi,
>
> kern.pre.mk contains
>   NORMAL_C= ${CC} -c ${CFLAGS} ${WERROR} ${PROF} ${.IMPSRC}
>   PROFILE_C= ${CC} -c ${CFLAGS} ${WERROR} ${.IMPSRC}
>   NORMAL_C_NOWERROR= ${CC} -c ${CFLAGS} ${PROF} ${.IMPSRC}
> shouldn't this be
>   NORMAL_C= ${CC} -c ${CFLAGS} ${WERROR} ${.IMPSRC}
>   PROFILE_C= ${CC} -c ${CFLAGS} ${PROF} ${WERROR} ${.IMPSRC}
>   NORMAL_C_NOWERROR= ${CC} -c ${CFLAGS} ${.IMPSRC}

No.  ${PROFILE_C} is for compiling profiling support files that must
be compiled without profiling.

Bruce


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-current" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20020403040250.K7472-100000>