mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Disable building of GDB info files until the gdb6 upgrade is finished.
This commit is contained in:
parent
ba39a1c5a4
commit
13aa0cfc8a
2 changed files with 8 additions and 2 deletions
|
|
@ -4,11 +4,12 @@ SUBDIR= libiberty libbfd libopcodes libbinutils \
|
|||
addr2line ar as ld nm objcopy objdump ranlib readelf \
|
||||
size strings strip doc
|
||||
|
||||
NO_GDB= yes
|
||||
TARGET_ARCH?= ${MACHINE_ARCH}
|
||||
.if (${TARGET_ARCH} == "alpha" \
|
||||
|| ${TARGET_ARCH} == "i386" ) \
|
||||
&& !defined(NO_GDB)
|
||||
#SUBDIR+= gdb gdbreplay
|
||||
SUBDIR+= gdb gdbreplay
|
||||
.endif
|
||||
|
||||
.include <bsd.subdir.mk>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
# $FreeBSD$
|
||||
|
||||
NO_GDB= yes
|
||||
|
||||
.include "../Makefile.inc0"
|
||||
|
||||
GDBDIR= ${.CURDIR}/../../../../contrib/gdb
|
||||
|
|
@ -7,7 +9,10 @@ CONTRIBDIR= ${.CURDIR}/../../../../contrib
|
|||
|
||||
.PATH: ${SRCDIR}/gas/doc ${SRCDIR}/ld ${SRCDIR}/bfd/doc ${GDBDIR}/gdb/doc ${GDBDIR}/gdb/mi
|
||||
|
||||
INFO = as ld gasp gdb gdbint stabs binutils
|
||||
INFO= as ld gasp stabs binutils
|
||||
.if !defined(NO_GDB)
|
||||
INFO+= gdb gdbint
|
||||
.endif
|
||||
INFOSECTION= "Programming & development tools."
|
||||
INFOENTRY_as= "* As: (as). The GNU assembler."
|
||||
INFOENTRY_gasp= "* Gasp: (gasp). The GNU Assembler Macro Preprocessor."
|
||||
|
|
|
|||
Loading…
Reference in a new issue