64 ビット Windows 版ライブラリ マネージャ: TLIB64.EXE

提供: RAD Studio
移動先: 案内検索

コマンドライン ユーティリティ:インデックス への移動

TTLIB64.EXE は、C++Builder 64 ビット Windows のオブジェクト ファイルおよびライブラリを扱うライブラリ マネージャです。

  • オブジェクト ファイルは ELF 形式で、拡張子は .o です。
  • ライブラリは GNU ar 形式で、拡張子は .a です。

TLIB64 では、32 ビット Windows 版の TLIB.EXE と同様に、OMF ファイルも管理することができます。TLIB の使い方のヘルプ トピックで、TLIB.EXE について書かれている手順や説明はすべて、TLIB64.EXE にも当てはまります。TLIB64 の使い方の詳細は、「ライブラリ マネージャ: TLIB.EXE」を参照してください。

64 ビット Windows で /A スイッチを指定して TLIB64 を実行する

TLIB64 で ELF 形式のライブラリを有効にするには、コマンドラインで /A オプションを指定する必要があります。

/A

(ELF オブジェクト ファイルを含む GNU AR 形式のアーカイブを書き出す)

コマンドライン ヘルプ

TLIB64.EXE のコマンドライン ヘルプを以下に示します。

 C:\ > tlib64
TLIB64 6.3 Copyright (c) 1987-2012 Embarcadero Technologies, Inc.
Syntax: TLIB64 libname options commands, listfile
   libname     library file pathname
   commands    sequence of operations to be performed (optional)
   listfile    file name for listing file (optional)

A command is of the form: <symbol>module, where <symbol> is:
   +           add module to the library
   -           delete module from the library
   *           extract module without removing it
   -+ or +-    update module in library
   -* or *-    extract module and remove it

Set the default action for modules without a specified command:
   /a          add module to the library
   /d          delete module from library
   /e          extract module without removal
   /u          update module in library
   /x          extract module and remove it from library

   /L          write listfile to stdout
   /N          disable support of command syntax
   /O          enable support of command syntax
   /A          write GNU AR format archive with ELF objs
   /C          case-sensitive library
   /PSIZE      set the library page size to SIZE
   /0          purge comment records
   /8          output encoding is utf-8

Use @filepath to continue from file "filepath".
Use '&' at end of a line to continue onto the next line.

関連項目