Automatically build with debug symbols when building with WITH_CTF.

Otherwise there's nothing for ctfconvert to do, and it ends up emitting an
error for each object file. Also remove some redundant checks from
bsd.prog.mk and bsd.lib.mk.

Differential Revision:	https://reviews.freebsd.org/D1111
Reviewed by:		imp
This commit is contained in:
Mark Johnston 2014-11-06 22:46:40 +00:00
parent 6276797fcd
commit 59a9e2ca26
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=274200
3 changed files with 3 additions and 2 deletions

View File

@ -36,7 +36,7 @@ NO_WERROR=
.if defined(DEBUG_FLAGS)
CFLAGS+= ${DEBUG_FLAGS}
.if ${MK_CTF} != "no" && ${DEBUG_FLAGS:M-g} != ""
.if ${MK_CTF} != "no"
CTFFLAGS+= -g
.endif
.else

View File

@ -128,6 +128,7 @@ __<bsd.own.mk>__:
.if ${MK_CTF} != "no"
CTFCONVERT_CMD= ${CTFCONVERT} ${CTFFLAGS} ${.TARGET}
DEBUG_FLAGS+= -g
.elif defined(.PARSEDIR) || (defined(MAKE_VERSION) && ${MAKE_VERSION} >= 5201111300)
CTFCONVERT_CMD=
.else

View File

@ -20,7 +20,7 @@ NO_WERROR=
CFLAGS+=${DEBUG_FLAGS}
CXXFLAGS+=${DEBUG_FLAGS}
.if ${MK_CTF} != "no" && ${DEBUG_FLAGS:M-g} != ""
.if ${MK_CTF} != "no"
CTFFLAGS+= -g
.endif
.endif