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.pputo 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:
Also distributed with Free Pascal comes a series of demonstration programs. These programs have no other purpose than demonstrating the capabilities of Free Pascal. They are located in the demo directory of the sources.
All example programs of the documentation are available. Check out the directories that end on ex in the documentation sources. There you will find all example sources.
ppumove is a program to make shared or static libraries from multiple units. It can be compared with the tpumove program that comes with Turbo Pascal.
It should be distributed in binary form along with the compiler.
It's usage is very simple:
ppumove [options] unit1.ppu unit2.ppu ... unitn.ppuWhere options is a combination of
The action of the ppumve program is as follows: It takes each of the unit files, and modifies it so that the compile will know that it should look for the unit code in the library. The new unit files will have an extension .ppu, this can be changed with the -e option. It will then put together all the object files of the units into one library, static or dynamic, depending on the presence of the -s option.
The name of this library must be set with the -o option. If needed, the prefix lib will be prepended under LINUX.. The extension will be set to .a for static libraries, for shared libraries the extensions are .so on linux, and .dll under WINDOWSNT and OS/2.
As an example, the following command
./ppumove -o both -e ppl ppu.ppu timer.ppuunder linux, will generate the following output:
PPU-Mover Version 0.99.7 Copyright (c) 1998 by the Free Pascal Development Team Processing ppu.ppu... Done. Processing timer.ppu... Done. Linking timer.o ppu.o Done.And it will produce the following files: