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 } [...]
- options are described in Table 1.
- outfile.42r is the name of the program to be
created.
- outfile.42x is the name of the library to be
created.
- module.42m is a p-code module compiled with fglcomp.
- library.42x is the name of a library to be linked.
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.