* [PATCH] gdb: remove gdb_indent.sh
@ 2023-02-01 14:37 Enze Li
2023-02-01 16:26 ` Simon Marchi
0 siblings, 1 reply; 3+ messages in thread
From: Enze Li @ 2023-02-01 14:37 UTC (permalink / raw)
To: gdb-patches; +Cc: enze.li
GDB has been converted to a C++ program for many years[1], and the
gdb_indent.sh will not be used any more. Therefore, remove the script as
obvious.
[1] https://sourceware.org/gdb/wiki/cxx-conversion
---
gdb/gdb_indent.sh | 92 -----------------------------------------------
1 file changed, 92 deletions(-)
delete mode 100755 gdb/gdb_indent.sh
diff --git a/gdb/gdb_indent.sh b/gdb/gdb_indent.sh
deleted file mode 100755
index 115b99521fc..00000000000
--- a/gdb/gdb_indent.sh
+++ /dev/null
@@ -1,92 +0,0 @@
-#!/bin/sh
-
-# Try to find a GNU indent. There could be a BSD indent in front of a
-# GNU gindent so when indent is found, keep looking.
-
-# Make certain that the script is not running in an internationalized
-# environment.
-LANG=c ; export LANG
-LC_ALL=c ; export LC_ALL
-
-gindent=
-indent=
-paths=`echo $PATH | sed \
- -e 's/::/:.:/g' \
- -e 's/^:/.:/' \
- -e 's/:$/:./' \
- -e 's/:/ /g'`
-for path in $paths
-do
- if test ! -n "${gindent}" -a -x ${path}/gindent
- then
- gindent=${path}/gindent
- break
- elif test ! -n "${indent}" -a -x ${path}/indent
- then
- indent=${path}/indent
- fi
-done
-
-if test -n "${gindent}"
-then
- indent=${gindent}
-elif test -n "${indent}"
-then
- :
-else
- echo "Indent not found" 1>&2
-fi
-
-
-# Check that the indent found is both GNU and a reasonable version.
-# Different indent versions give different indentation.
-
-m1=2
-m2=2
-m3=9
-
-version=`${indent} --version 2>/dev/null < /dev/null`
-case "${version}" in
- *GNU* ) ;;
- * ) echo "error: GNU indent $m1.$m2.$m3 expected" 1>&2 ; exit 1;;
-esac
-v1=`echo "${version}" | sed 's/^.* \([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)$/\1/'`
-v2=`echo "${version}" | sed 's/^.* \([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)$/\2/'`
-v3=`echo "${version}" | sed 's/^.* \([0-9]*\)\.\([0-9]*\)\.\([0-9]*\)$/\3/'`
-
-if test $m1 -ne $v1 -o $m2 -ne $v2 -o $m3 -gt $v3
-then
- echo "error: Must be GNU indent version $m1.$m2.$m3 or later" 1>&2
- exit 1
-fi
-
-if test $m3 -ne $v3
-then
- echo "warning: GNU indent version $m1.$m2.$m3 recommended" 1>&2
-fi
-
-# Check that we're in the GDB source directory
-
-case `pwd` in
- */gdb ) ;;
- */sim/* ) ;;
- * ) echo "Not in GDB directory" 1>&2 ; exit 1 ;;
-esac
-
-
-# Run indent per GDB specs
-
-types="\
--T FILE \
--T bfd -T asection -T pid_t \
--T prgregset_t -T fpregset_t -T gregset_t -T sigset_t \
--T td_thrhandle_t -T td_event_msg_t -T td_thr_events_t \
--T td_notify_t -T td_thr_iter_f -T td_thrinfo_t \
--T caddr_t \
-`cat *.h | sed -n \
- -e 's/^.*[^a-z0-9_]\([a-z0-9_]*_ftype\).*$/-T \1/p' \
- -e 's/^.*[^a-z0-9_]\([a-z0-9_]*_func\).*$/-T \1/p' \
- -e 's/^typedef.*[^a-zA-Z0-9_]\([a-zA-Z0-9_]*[a-zA-Z0-9_]\);$/-T \1/p' \
- | sort -u`"
-
-${indent} ${types} "$@"
base-commit: 4788abdec79a937e51ad334b608fa1bd03713112
--
2.39.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] gdb: remove gdb_indent.sh
2023-02-01 14:37 [PATCH] gdb: remove gdb_indent.sh Enze Li
@ 2023-02-01 16:26 ` Simon Marchi
2023-02-02 13:01 ` Enze Li
0 siblings, 1 reply; 3+ messages in thread
From: Simon Marchi @ 2023-02-01 16:26 UTC (permalink / raw)
To: Enze Li, gdb-patches; +Cc: enze.li
On 2/1/23 09:37, Enze Li via Gdb-patches wrote:
> GDB has been converted to a C++ program for many years[1], and the
> gdb_indent.sh will not be used any more. Therefore, remove the script as
> obvious.
FWIW, I think this is ok. It seems irrelevant today.
Simon
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] gdb: remove gdb_indent.sh
2023-02-01 16:26 ` Simon Marchi
@ 2023-02-02 13:01 ` Enze Li
0 siblings, 0 replies; 3+ messages in thread
From: Enze Li @ 2023-02-02 13:01 UTC (permalink / raw)
To: Simon Marchi; +Cc: gdb-patches, enze.li
On Wed, Feb 01 2023 at 11:26:53 AM -0500, Simon Marchi wrote:
> On 2/1/23 09:37, Enze Li via Gdb-patches wrote:
>> GDB has been converted to a C++ program for many years[1], and the
>> gdb_indent.sh will not be used any more. Therefore, remove the script as
>> obvious.
>
> FWIW, I think this is ok. It seems irrelevant today.
>
> Simon
Thanks, Simon. Pushed.
Enze
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-02-02 13:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-01 14:37 [PATCH] gdb: remove gdb_indent.sh Enze Li
2023-02-01 16:26 ` Simon Marchi
2023-02-02 13:01 ` Enze Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).