Usage: ldd [OPTION]... FILE...
--help print this help and exit
--version print version information and exit
-d, --data-relocs process data relocations
-r, --function-relocs process data and function relocations
-u, --unused print unused direct dependencies
-v, --verbose print all information
For bug reporting instructions, please see:
Usage: ldd [OPTION]... FILE...
--help print this help and exit
--version print version information and exit
-d, --data-relocs process data relocations
-r, --function-relocs process data and function relocations
-u, --unused print unused direct dependencies
-v, --verbose print all information
For bug reporting instructions, please see:
LDD(1) Linux Programmer’s Manual LDD(1) 名前 ldd - 共有ライブラリへの依存関係を表示する 書式 ldd [OPTION]... FILE... 説明 ldd はコマンドラインで指定したプログラムや共有ライブラリについて、それ ぞれで必要とされる共有ライブラリを表示する。 オプション --version ldd のバージョン番号を表示する。 -v --verbose シンボルのバージョン情報などを含めた全ての情報を表示する。 -u --unused 使用されていない直接の依存関係を表示する (glibc 2.3.4 以降)。 -d --data-relocs リロケーションを実行し、足りないオブジェクトについてレポートする (ELF のみ)。 -r --function-relocs 足りないオブジェクトや関数についてレポートする (ELF のみ)。 --help 使用法を表示する。 注意 標 準的なバージョンの ldd は glibc2 に付属している。 libc5 には古いバー ジョンのものが付属しており、これが入っているシステムもまだ存在 す る 。 libc5 バ ー ジ ョ ン ではロングオプションがサポートされていない。一方 、glibc2 バージョンでは -V をサポートしておらず、これ と 同 じ 意 味 の --version しかサポートしていない。 libc5 バージョンのプログラムでは、コマンドラインで与えられたライブラリ 名に '/' が含まれている場合は、ライブラリ名をそのまま用いる。 '/' が 含 ま れていない場合は、標準的なパスからライブラリを検索する。カレントディ レクトリにある共有ライブラリに対して実行するには、名前にプレフィック ス "./" を付けること。 バグ ldd は a.out 共有ライブラリでは動作しない。 ldd は非常に古い a.out プログラム (ldd のサポートがコンパイラに追加され る以前にビルドされたようなプログラム) では動作しない。このようなプロ グ ラムに対して ldd を用いると、プログラムは argc = 0 で実行される。結果は 予想不可能である。 関連項目 ld.so(8), ldconfig(8) 2000-10-30 LDD(1)
LDD(1) Linux Programmer’s Manual LDD(1) NAME ldd - print shared library dependencies SYNOPSIS ldd [OPTION]... FILE... DESCRIPTION ldd prints the shared libraries required by each program or shared library specified on the command line. OPTIONS --version Print the version number of ldd. -v --verbose Print all information, including, for example, symbol versioning information. -u --unused Print unused direct dependencies. (Since glibc 2.3.4.) -d --data-relocs Perform relocations and report any missing objects (ELF only). -r --function-relocs Perform relocations for both data objects and functions, and report any missing objects or functions (ELF only). --help Usage information. NOTES The standard version of ldd comes with glibc2. Libc5 came with an older version, still present on some systems. The long options are not supported by the libc5 version. On the other hand, the glibc2 version does not support -V and only has the equivalent --version. The libc5 version of this program will use the name of a library given on the command line as-is when it contains a '/'; otherwise it searches for the library in the standard locations. To run it on a shared library in the current directory, prefix the name with "./". BUGS ldd does not work on a.out shared libraries. ldd does not work with some extremely old a.out programs which were built before ldd support was added to the compiler releases. If you use ldd on one of these programs, the program will attempt to run with argc = 0 and the results will be unpredictable. SEE ALSO ld.so(8), ldconfig(8) COLOPHON This page is part of release 3.22 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/. 2000-10-30 LDD(1)
Copyright(C) linux-cmd.com All Rights Reserved. Author Takayuki Yukawa