Object libraries

Use the ACUCOBOL-GT cblutil utility to combine multiple ACUCOBOL-GT objects into one ACUCOBOL-GT object library. This is not the same as HP linking. It is useful if you want to combine all of your objects into one file so that you don't have a lot of separate objects.

For example:

:cblutil "-lib –v –o OBJLIB OBJECT1 OBJECT2 OBJECT3"
This code creates an ACUCOBOL-GT object library called OBJLIB. The run-time loads all of the ACUCOBOL-GT objects in OBJLIB and starts executing the main program when you start the program with one of the following:
:RUN /ACUCOBOL/bin/runcbl;INFO="OBJLIB"
:runcbl "OBJLIB"

See Object File Utilities-cblutil for more information.