Module Name: src
Committed By: mrg
Date: Sun Oct 16 19:20:02 UTC 2016
Modified Files:
src/share/mk: bsd.own.mk
Log Message:
switch alpha to GDB 7.12. it works just as featureful as 7.7/7.10.
'step' and 'stepi' both fail, but 'next' and break points are ok,
so a sufficiently determined user can get somewhere..
someone should try to fix 'step'. it appears to loop forever inside
ld.elf_so for me in an atomic cas function.
To generate a diff of this commit:
cvs rdiff -u -r1.972 -r1.973 src/share/mk/bsd.own.mk
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/share/mk/bsd.own.mk
diff -u src/share/mk/bsd.own.mk:1.972 src/share/mk/bsd.own.mk:1.973
--- src/share/mk/bsd.own.mk:1.972 Sun Oct 16 05:08:59 2016
+++ src/share/mk/bsd.own.mk Sun Oct 16 19:20:02 2016
@@ -1,4 +1,4 @@
-# $NetBSD: bsd.own.mk,v 1.972 2016/10/16 05:08:59 mrg Exp $
+# $NetBSD: bsd.own.mk,v 1.973 2016/10/16 19:20:02 mrg Exp $
# This needs to be before bsd.init.mk
.if defined(BSD_MK_COMPAT_FILE)
@@ -130,11 +130,12 @@ USE_SSP?= yes
#
# What GDB is used?
#
-.if ${MACHINE} == "amd64" || \
+.if ${MACHINE} == "alpha" || \
+ ${MACHINE} == "amd64" || \
${MACHINE} == "sparc" || \
${MACHINE} == "sparc64" || \
- ${MACHINE_CPU} == "powerpc" || \
- ${MACHINE_CPU} == "arm"
+ ${MACHINE_CPU} == "arm" || \
+ ${MACHINE_CPU} == "powerpc"
HAVE_GDB?= 712
.else
HAVE_GDB?= 710