PPUMove/fr

From Free Pascal wiki
Revision as of 09:39, 14 January 2011 by Captainkrabs (talk | contribs)
Jump to navigationJump to search

Du manuel d'ulisateur de FreePascal :

ppumove est un programme qui permet de réaliser des librairies statiques ou partagées d'unités multiples. Il peut être comparé avec le programme tpumove apparu avec Turbo Pascal. Il devrait être distribué sous forme binaire avec le compilateur.

Son utilisation est très simple :

ppumove [options] unit1.ppu unit2.ppu ... unitn.ppu ri

Où [options] est une combinaison de :

-b: If specified, ppumve will generate a batch file that will contain the external linking and archiving commands that must be executed. The name of this batch file is pmove.sh on linux, and pmove.bat otherwise.

-d xxx: If specified, the output files will put in the directory xxx

-e xxx: Sets the extension of the moved unit files to xxx. By default, this is .ppl. You don't have to specify the dot.

-o xxx: sets the name of the output file, i.e. the name of the file containing all the units. This parameter is mandatory when you use multiple files. On linux, ppumove will prepend this name with lib if it isn't already there, and will add an extension appropriate to the type of library.

-q: Causes ppumove to operate silently.

-s: Tells ppumove to make a static library instead of a dynamic one; By default, a dynamic library is made on linux.

-w: Tells ppumove that it is working under Windows NT. This will change the names of te linker and archiving program to ldw and arw, respectively.

-h or -?: affichera une courte aide.