Building COBOL applications

To build an application, you need to compile its programs and link them to a run-time system. In the IDE, you use a build configuration to define how to do this.

Building native COBOL applications

When building native COBOL applications, the Compiler first checks the program for syntax errors. Then, it generates native machine code. Finally, the linker links the native machine code into an executable (either an .exe or a .dll).

  1. The check phase - the Compiler checks the program's syntax and creates files to use for testing and debugging. The check phase creates a dictionary file for use with the Debugger and, if you are building an INT/GNT project or have set the project output type to INT/GNT, it can produce an .int file.
  2. The generate phase - during the generate phase, the Compiler creates native machine code from the intermediate code produced during the check phase, and produces either an industry-standard .obj file or, if you are building an INT/GNT project or have set the project output type to INT/GNT, it can produce a Micro Focus .gnt file.

    You can execute .int and .gnt code directly with the run-time system. You cannot execute the object code file. You must link it with the appropriate run-time system to create an executable file.

  3. The linking phase - during the link phase, the code is linked to the run-time system and creates an executable file - an .exe, .dll or .so.

Building managed COBOL applications

When building JVM COBOL applications, the Compiler compiles your code to Java byte code (.class) which is then executed on a Java Virtual Machine (JVM).

Note: When working with local SQL applications on UNIX, ensure the RDBMS environment is set before you start Eclipse. Refer to your RDBMS vendor's documentation for details.

Visual COBOL Build Tools for Windows

Visual COBOL Build Tools for Windows is a separately-installable component of Visual COBOL that has been designed to be used in environments where you want to work with your COBOL projects but you don't want the overheads associated with the Eclipse IDE.

For more information see Visual COBOL Build Tools for Windows.

Compiling the Files in a Project in Parallel

Restriction: Multi-processor compilation of the sources in a project is only supported for native COBOL and is not supported for JVM COBOL applications. It should be avoided for native Object-Oriented COBOL applications.

You can compile your source code faster on multi-CPU machines if you enable parallel compilation in the IDE. This option works with a full project build and not with the Compile context menu command.

Click Window > Preferences > Micro Focus > Builder and specify the Maximum number of compilations to execute concurrently. The maximum number of cores to be used is the number of cores of the machine on which the build is being run.