Product Documentation
Virtuoso Studio Design Environment SKILL Reference
Product Version IC23.1, November 2023

ddDumpLibList

ddDumpLibList(
)
=> t

Description

Prints information about the library list. It first prints the list of library files (cds.lib and lib.defs files) and then prints information about each library in the library list. This includes the path to the library and the path to TMP directories, if any.

By default, information about the libraries is printed in the order in which the libraries appear in the cds.lib files, unless the environment variable DD_GEN_ORDERED_LIBLIST is set to false, in which case the order is random.

Arguments

None

Value Returned

t

Information about the library list is printed.

Examples

If you have the following cds.lib:

/tmp/TESTDIR/cds.lib

which has the following contents:

DEFINE LibA ./LibA
DEFINE LibB ./LibB

ddDumpLibList prints the following information:

Lib Files:
1: /tmp/TESTDIR/cds.lib
Libraries defined:
1: LibA from file /tmp/TESTDIR/cds.lib (refCount 1).
     Path: /tmp/TESTDIR/LibA
2: LibB from file /tmp/TESTDIR/cds.lib (refCount 1).      Path: /tmp/TESTDIR/LibB

where refCount is the number of cds.lib files that contain that library definition.


Return to top
 ⠀
X