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}
> ?
nope. PROFILE_C is for compiling the profiling support code itself.
If it was compiled with ${PROF} then it would be generated with recursive
calls to itself.
Cheers,
-Peter
--
Peter Wemm - [EMAIL PROTECTED]; [EMAIL PROTECTED]; [EMAIL PROTECTED]
"All of this is for nothing if we don't go to the stars" - JMS/B5
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message