fglmkext
The fglmkext tool compiles and links a user C Extension.
Syntax
fglmkext [options] source.c [...]
- options are described in Table 1.
- source is a C source file implementing C extension functions.
Options
Option | Description |
---|---|
-V |
Display version information for the tool. |
-h |
Displays options for the tool. Short help. |
-o
libname |
Output file specification, defines the C Extension library name. |
Usage
The fglmkext command line tool compiles and links a C Extension library.
The command can be used with a single source file, the name
of the library will default to the name of the specified
source:
fglmkext myext.c
If a single C source file is
provided, must define the usrFunctions
C extension interface structure
as well as the functions to be used from a BDL program.
-o
option, several C source files can also be specified. For
example, on a UNIX
platform:fglmkext -o mycext.so module_a.c module_b.c