1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

build: update gdb_backtrace to make it search for gdb66 as it work on freebsd

Autobuild-User: Matthieu Patou <mat@samba.org>
Autobuild-Date: Sun Nov 28 16:37:08 CET 2010 on sn-devel-104
This commit is contained in:
Matthieu Patou 2010-11-28 17:32:06 +03:00 committed by Matthieu Patou
parent 06beebd1e4
commit c254527386

View File

@ -37,6 +37,13 @@ case "${UNAME}" in
SunOS)
DB_LIST="dbx ${DB_LIST}"
;;
#
# FreeBSD comes with a flavor that works gdb66 and one that don't gdb
# (gdb 6.1) let's try it first the one that works !
#
FreeBSD)
DB_LIST="gdb66 ${DB_LIST}"
;;
esac
for DB in ${DB_LIST}; do
@ -83,6 +90,16 @@ quit
EOF
${DB_BIN} -c "${BATCHFILE_MAIN}" -i "${BATCHFILE_PRE}" -pid "${PID}" "${BINARY}"
;;
gdb66)
cat << EOF > ${BATCHFILE_MAIN}
set height 1000
bt full
info locals
kill
quit
EOF
${DB_BIN} -x "${BATCHFILE_MAIN}" "${BINARY}" "${PID}"
;;
gdb)
cat << EOF > ${BATCHFILE_MAIN}
set height 1000