- UID
- 5798
- 积分
- 1046
- 精华
- 贡献
-
- 威望
-
- 活跃度
-
- D豆
-
- 在线时间
- 小时
- 注册时间
- 2002-5-28
- 最后登录
- 1970-1-1
|
发表于 2005-6-13 16:55:04
|
显示全部楼层
Using the MDL Librarian
The MDL librarian, mlib, is used to combine multiple MDL object (.mo) files into a larger, linkable, MDL library (.ml) file. Use of this utility is optional, and many MDL applications, including basic.ma, are built without using mlib.
The command line syntax for the MDL librarian is as follows:
MLIB COMMAND[MODIFIERS] LIBRARY-FILE [INPUT-FILES]
The commands are as follows:
command description
a Add the files to the library file.
d Delete the files from the library file.
t Display a table of contents.
x Extract the files from the library.
The modifiers are:
modifier description
v Verbose.
c Do not display a message if the library file is created.
The following command requests a verbose table of contents of the mathlib.m library file:
MLIB -TV MATHLIB.ML
mlib stores any type of file in a library file. If the file being stored is an MDL object file, mlib extracts information from the file's symbol table and stores the information in the library file's header. This activity enables mlink to process the library faster when deciding which object images from the library file should be used.
Popup |
|