PPUDump

From Free Pascal wiki
Revision as of 08:33, 15 December 2016 by E-ric (talk | contribs)
Jump to navigationJump to search

English (en) français (fr)

From FreePascal User's Manual:

ppudump is a program, which shows the contents of a Free Pascal unit. It is distributed with the compiler. You can just issue the following command

 ppudump [options] foo.ppu

to display the contents of the foo.ppu unit. You can specify multiple files on the command line.

The options can be used to change the verbosity of the display. By default, all available information is displayed. You can set the verbosity level using the -Vxxx option. Here, xxx is a combination of the following letters:

h: show header info.

i: show interface information.

m: show implementation information.

d: show only (interface) definitions.

s: show only (interface) symbols.

b: show browser info.

a: show everything (default if no -V option is present).