Module Name: src Committed By: christos Date: Sun Aug 6 20:28:26 UTC 2023
Modified Files: src/external/gpl3/gdb/bin/gdbserver: Makefile src/external/gpl3/gdb/bin/gdbserver/arch/x86_64: config.h Log Message: Make this build To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/gpl3/gdb/bin/gdbserver/Makefile cvs rdiff -u -r1.1 -r1.2 \ src/external/gpl3/gdb/bin/gdbserver/arch/x86_64/config.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/gpl3/gdb/bin/gdbserver/Makefile diff -u src/external/gpl3/gdb/bin/gdbserver/Makefile:1.5 src/external/gpl3/gdb/bin/gdbserver/Makefile:1.6 --- src/external/gpl3/gdb/bin/gdbserver/Makefile:1.5 Fri Sep 17 21:47:09 2021 +++ src/external/gpl3/gdb/bin/gdbserver/Makefile Sun Aug 6 16:28:26 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2021/09/18 01:47:09 christos Exp $ +# $NetBSD: Makefile,v 1.6 2023/08/06 20:28:26 christos Exp $ NOCTF= NOMAN= @@ -7,7 +7,8 @@ NOMAN= PROG= gdbserver -SERVER_SRCS+= ax.cc debug.cc dll.cc hostio.cc hostio-errno.cc inferiors.cc mem-break.cc notif.cc +SERVER_SRCS+= ax.cc debug.cc dll.cc hostio.cc inferiors.cc +SERVER_SRCS+= notif.cc mem-break.cc SERVER_SRCS+= regcache.cc remote-utils.cc server.cc symbol.cc target.cc SERVER_SRCS+= tdesc.cc tracepoint.cc utils.cc waitstatus.c version.cc @@ -60,6 +61,6 @@ HOST_CFLAGS+= ${HOST_CXXFLAGS} CC:= ${CXX} CFLAGS:= ${CXXFLAGS} -std=gnu++11 -Wno-error=stack-protector -pthread -.PATH: ${DIST}/gdbserver ${DIST}/gdb/nat ${DIST}/gdb/arch ${DIST}/gdb/target \ - ${.CURDIR}/arch/${GDB_MACHINE_ARCH} \ +.PATH: ${DIST}/gdbserver ${DIST}/gdb/nat ${DIST}/gdb/arch \ + ${.CURDIR}/arch/${GDB_MACHINE_ARCH} ${DIST}/gdb/target \ ${DIST}/../lib/libgdbsupport/arch/${GDB_MACHINE_ARCH} Index: src/external/gpl3/gdb/bin/gdbserver/arch/x86_64/config.h diff -u src/external/gpl3/gdb/bin/gdbserver/arch/x86_64/config.h:1.1 src/external/gpl3/gdb/bin/gdbserver/arch/x86_64/config.h:1.2 --- src/external/gpl3/gdb/bin/gdbserver/arch/x86_64/config.h:1.1 Wed Sep 23 19:36:59 2020 +++ src/external/gpl3/gdb/bin/gdbserver/arch/x86_64/config.h Sun Aug 6 16:28:26 2023 @@ -21,7 +21,7 @@ #define ENABLE_NLS 1 /* Define if self-testing features should be enabled */ -#define GDB_SELF_TEST 1 +// #define GDB_SELF_TEST 1 /* Define to 1 if you have `alloca', as a function or macro. */ #define HAVE_ALLOCA 1