哪个版本的 ctags 有 `-T` 选项?

Which version of ctags had the `-T` option?

我正在查看旧的 Makefile,它指定 ctags-T 选项。我是运行 exuberant ctags 5.9,没有-T选项

网络搜索词 ctags -T option 未显示任何内容。

有人知道 ctags 的哪个版本支持 -T 选项及其含义吗?

嗯,在我的 Gentoo 系统上我有这个:

$ ctags --help | grep -e -T
-T, --typedefs-and-c++

$ ctags --version          
ctags (GNU Emacs 24.5)
Copyright (C) 2015 Free Software Foundation, Inc.
This program is distributed under the terms in ETAGS.README

$ readlink $(which ctags) 
ctags-emacs-24

$ equery belongs $(which ctags)
app-editors/emacs-24.5 (/usr/bin/ctags-emacs-24)

$ eselect ctags list
Available ctags symlink targets:
  [1]   ctags-emacs-24 *
  [2]   exuberant-ctags

ctags-emacs-24 是 ctags implementation from emacs package, while exuberant ctags 可通过 exuberant-ctags 命令获得。

我想在你的系统上,ctags 命令是 exuberant ctags,它没有 -T 选项。