fgllink

The fgllink tool assembles p-code modules produced with fglcomp into a .42r program or a .42x library.

Syntax

To create a library:
fgllink [options] -o outfile.42x module.42m [...]
To create a program:
fgllink [options] -o outfile.42r { module.42m | library.42x } [...]
  1. options are described in Table 1.
  2. outfile.42r is the name of the program to be created.
  3. outfile.42x is the name of the library to be created.
  4. module.42m is a p-code module compiled with fglcomp.
  5. library.42x is the name of a library to be linked.

Options

Usage

The fgllink command line tool links .42m p-code modules together to create a .42x library or a .42r program file.
fgllink -o myprog.42x module1.42m module2.42m lib1.42x
Note: fgllink is a wrapper calling fglrun with the -l option.