zsh-workers
 help / color / mirror / code / Atom feed
5c10faa02d4dbdac98c5b8f9164db5aa26b42514 blob 1211 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 
#compdef -value-,LD_DEBUG,-default-

local vals

vals=(
  'libs[display library search paths]'
  'files[show processing of files and libraries]'
  'bindings[display symbol binding]'
  'reloc[display relocation processing]'
  'symbols[display symbol table processing]'
  'unused[show unused files]'
  'versions[show version processing]'
  'help[display help message]'
)

case $OSTYPE in
  solaris*)
    vals+=(
      'basic[provide basic trace information/warnings]'
      'cap[display hardware/software capability processing]'
      'detail[provide more info in conjunction with other options]'
      'demangle[display C++ symbol names in their demangled form]'
      'init[display init and fini processing]'
      'long[display long object names without truncation]'
      'move[display move section processing]'
      'segments[display available output segments and address/offset processing]'
      'strtab[display information about string table compression]'
      'tls[display TLS processing info]'
    )
  ;;
  linux*)
    vals+=(
      'all[combine all options]'
      'scopes[display scope information]'
      'statistics[display relocation statistics]'
    )
  ;;
esac
_values -s , capability $vals
  
debug log:

solving 5c10faa02 ...
found 5c10faa02 in https://git.vuxu.org/mirror/zsh/

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

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 NNTP newsgroup(s).