mirror of
https://github.com/opnsense/src.git
synced 2026-04-20 21:59:20 -04:00
debug files for userland programs and libraries. The "-g" debug flag
is automatically applied when WITH_DEBUG_FILES is set.
The debug files are now named ${prog}.debug and ${shlib}.debug for
consistency with other systems and documentation. In addition they are
installed under /usr/lib/debug, to simplify the process of installing
them if needed after a crash. Users of bsd.{prog,lib}.mk outside of the
base system place the standalone debug files in a .debug subdirectory.
GDB automatically searches both of these directories for standalone
debug files.
Thanks to everyone who contributed changes, review, and testing during
development.
69 lines
1.6 KiB
Makefile
69 lines
1.6 KiB
Makefile
# $FreeBSD$
|
|
|
|
VERSION= "6.1.1 [FreeBSD]"
|
|
VENDOR= marcel
|
|
|
|
BMAKE_GDB= ${.CURDIR}/..
|
|
BMAKE_ROOT= ${BMAKE_GDB}/..
|
|
BMAKE_BU= ${BMAKE_ROOT}/binutils
|
|
|
|
CNTRB_ROOT= ${BMAKE_ROOT}/../../contrib
|
|
CNTRB_BU= ${CNTRB_ROOT}/binutils
|
|
CNTRB_GDB= ${CNTRB_ROOT}/gdb
|
|
CNTRB_RL= ${CNTRB_ROOT}/libreadline
|
|
|
|
OBJ_ROOT= ${.OBJDIR}/../..
|
|
OBJ_BU= ${OBJ_ROOT}/binutils
|
|
OBJ_GDB= ${OBJ_ROOT}/gdb
|
|
|
|
# These assignments duplicate much of the functionality of
|
|
# MACHINE_CPUARCH, but there's no easy way to export make functions...
|
|
|
|
.if defined(TARGET_ARCH)
|
|
TARGET_CPUARCH=${TARGET_ARCH:C/mips(n32|64)?(el)?/mips/:C/arm(v6)?(eb)?/arm/:C/powerpc64/powerpc/}
|
|
.else
|
|
TARGET_CPUARCH=${MACHINE_CPUARCH}
|
|
.endif
|
|
TARGET_ARCH?= ${MACHINE_ARCH}
|
|
TARGET_SUBDIR= ${BMAKE_GDB}/arch/${TARGET_CPUARCH}
|
|
|
|
.if ${TARGET_ARCH} != ${MACHINE_ARCH}
|
|
GDB_CROSS_DEBUGGER=
|
|
.endif
|
|
|
|
.if !defined(INFO)
|
|
|
|
.PATH: ${CNTRB_GDB}/gdb ${CNTRB_GDB}/gdb/cli ${CNTRB_GDB}/gdb/mi \
|
|
${CNTRB_GDB}/gdb/signals ${CNTRB_GDB}/gdb/tui ${TARGET_SUBDIR}
|
|
|
|
CFLAGS+= -DHAVE_CONFIG_H -DRL_NO_COMPAT -DMI_OUT=1 -DTUI=1
|
|
CFLAGS+= -DDEBUGDIR=\"${DEBUGDIR}\"
|
|
CFLAGS+= -I.
|
|
CFLAGS+= -I${TARGET_SUBDIR}
|
|
CFLAGS+= -I${BMAKE_BU}/libbfd -I${BMAKE_BU}/libbfd/${TARGET_CPUARCH}
|
|
CFLAGS+= -I${CNTRB_GDB}/gdb
|
|
CFLAGS+= -I${CNTRB_GDB}/gdb/config
|
|
CFLAGS+= -I${CNTRB_BU}/include
|
|
CFLAGS+= -I${CNTRB_GDB}/include
|
|
CFLAGS+= -I${CNTRB_BU}/bfd
|
|
|
|
GENSRCS+= nm.h tm.h
|
|
|
|
.if defined(GDB_CROSS_DEBUGGER)
|
|
CFLAGS+= -DCROSS_DEBUGGER -I${BMAKE_ROOT}/../..
|
|
GDB_SUFFIX= -${TARGET_ARCH}
|
|
NO_MAN=
|
|
.endif
|
|
|
|
.include "${TARGET_SUBDIR}/Makefile"
|
|
|
|
SRCS+= ${GENSRCS}
|
|
CLEANFILES+= ${GENSRCS}
|
|
|
|
.else
|
|
|
|
.PATH: ${CNTRB_GDB}/gdb ${CNTRB_GDB}/gdb/doc ${CNTRB_RL}/doc
|
|
|
|
.endif
|
|
|
|
.include "../Makefile.inc"
|