26763: fix problem on failed cd -s to relative path
[zsh.git] / Completion / Unix / Type / _ld_debug
blob94593eff0561dbc30ff16bfff06b43ad00f49a68
1 #compdef -value-,LD_DEBUG,-default-
3 local vals
5 vals=(
6   'libs[display library search paths]'
7   'files[show processing of files and libraries]'
8   'bindings[display symbol binding]'
9   'reloc[display relocation processing]'
10   'symbols[display symbol table processing]'
11   'unused[show unused files]'
12   'versions[show version processing]'
13   'help[display help message]'
16 case $OSTYPE in
17   solaris*)
18     vals+=(
19       'basic[provide basic trace information/warnings]'
20       'cap[display hardware/software capability processing]'
21       'detail[provide more info in conjunction with other options]'
22       'demangle[display C++ symbol names in their demangled form]'
23       'init[display init and fini processing]'
24       'long[display long object names without truncation]'
25       'move[display move section processing]'
26       'segments[display available output segments and address/offset processing]'
27       'strtab[display information about string table compression]'
28       'tls[display TLS processing info]'
29     )
30   ;;
31   linux*)
32     vals+=(
33       'all[combine all options]'
34       'statistics[display relocation statistics]'
35     )
36   ;;
37 esac
38 _values -s , capability $vals
39