zsh-workers
 help / color / mirror / code / Atom feed
0980bc043c3afce16524c089b425f1392c576402 blob 1330 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
 
#compdef ldd

if _pick_variant gnu='(GNU|EGLIBC)' solaris --version; then
  args=(
    '(- *)--version[display version information]'
    '(- *)--help[display help information]'
    '(-v --verbose)'{-v,--verbose}'[include symbol versioning information]'
    '(-d --data-relocs)'{-d,--data-relocs}'[perform data relocations and report missing objects]'
    '(-r --function-relocs)'{-r,--function-relocs}'[perform data/function relocations and report missing objects]'
    '(-u --unused)'{-u,--unused}'[display any unused objects]'
  )
else
  args=(
    -s
    '(-r)-d[check immediate references]'
    '(-d)-r[check immediate and lazy references]'
    '-u[display any unused objects]'
    '-U[display any unreferenced, or unused dependencies]'
    '-e[set specified environment variable]:environment variable:(LD_PRELOAD LD_LIBRARY_PATH LD_RUN_PATH LD_DEBUG LD_DEBUG_OUTPUT LD_NOCONFIG LD_NOAUXFLTR)'
    '-f[check for insecure executable]'
    '-i[display order of execution of initialization sections]'
    '-L[enable lazy loading]'
    '-l[force immediate processing of any filters]'
    '-s[display search path used]'
    '-v[displays all dependency relationships]'
  )
fi

_arguments $args \
  '*: : _alternative
    "executables:executable:_files -g \^\*.so\(\-\*\)"
      "shared-objects:shared object:_files -g \*.so\(-.\)"'
debug log:

solving 0980bc0 ...
found 0980bc0 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).