Use the following syntax to compile source files into a shared object module for notify exit routines on Linux client systems:
where:
Syntax Element | Description |
---|---|
gcc | Call to the program that invokes the gcc compiler. |
-shared | Link option that generates a shared object file. |
-o | Switch to the link option. |
shared-object-name | Any valid file name to serve as the name of the shared object file. Specify this name in the NotifyExit attribute value supplied in the operator definition section of a job script. When creating a shared object module for a notify exit routine, if the notify exit routine uses functions from an external library, then that library must be statically linked with the notify exit routine so that Teradata PT can resolve the external references.
|
sourcefile | File name(s) of the source file(s) for a notify exit routine. |