Previous Topic Next topic Print topic


Compiling JVM COBOL

Important: A Clean command is run before each build that deletes all .class files in the output folder of the JVM COBOL project.

JVM COBOL Classpath

Usually programs in JVM COBOL projects use types that come from external artefacts like .class and .jar files. To successfully compile and build such a project, a JVM COBOL classpath must be set.

To define the classpath for a JVM COBOL project use the standard Project > Properties > Java Build Path > Libraries tab.

Setting the JAVA Installation Directory

If you are developing a Java or JVM COBOL project, you do not have to set the Java installation directory using the JAVA_HOME variable. Follow these steps to identify the JRE using the Properties dialog boxes:

  1. Click Project > Properties.
  2. Click Java Build Path and select the Libraries tab.
  3. Select JRE System Library and click the Edit button.
  4. Select Alternate JRE and navigate to the installed JRE you want to use.

Building JVM COBOL Projects Incrementally

By default, Eclipse automatically recompiles all sources in your project every time you save the project or when you change the project or file properties. This, however, could mean a considerable overhead when you have large projects. To avoid this, you can configure your project to only build the sources that have changed since the last time the project was built. This is known as incremental building, you can specify that the project is built incrementally.

How you specify that a project is to be built incrementally depends on the type of project and are mutually exclusive:

  • JVM COBOL projects that contain procedural code or extensions that take advantage of features of the managed frameworks including object-oriented (OO) syntax, and that compile as a JVM COBOL applications to Java byte code.

    You can enable the use of dynamic calls, which is equivalent to setting the ILDYNCALL Compiler directive that ensures that files in the project are compiled one at a time and that the build does not compile all files for one single compile command. It resolves calls to modules at run time rather than compile time; this has the effect of not requiring every module to be built.

    1. Right-click your project in COBOL Explorer and click Properties.
    2. Click Micro Focus > Build Configuration.
    3. Check Use dynamic calls.
    4. Click Apply then click OK.

      Next time you make a change in the project, Eclipse only rebuilds the files that have changed.

    You can force a complete rebuild of the project manually by selecting Project > Clean.

    Micro Focus recommends that you clean your project and build before packaging for distribution.

  • JVM COBOL projects containing managed code that use namespaces.

    To enable incremental builds for JVM COBOL projects that use namespaces, you need to specify the Use incremental build (Technical preview feature) setting. This is equivalent to setting the ILINCREMENTALBUILD Compiler directive. When this directive is specified, Eclipse only recompiles programs that have changed and programs that refer to types or programs within those programs that have changed. Incremental builds will only take effect once you have a clean build environment with no errors. Having build errors will result in a failure to generate class files, a full build will continue until the errors are resolved.

    Note: This is a technology preview feature only. It is being made available to allow you to test and provide feedback on this new capability; however, this feature is not intended for production use and it is not supported as such. Furthermore, Micro Focus does not guarantee that this feature will be delivered at a GA level and if it is, then the functionality provided might differ considerably from this technology preview.
    1. Right-click your project in COBOL Explorer and click Properties.
    2. Click Micro Focus > Build Configuration.
    3. Check Use incremental build (Technical preview feature).
    4. Click Apply then click OK.

      Next time you make a change in the project, Eclipse only rebuilds the files that have changed.

    The build also creates a directory within the project output directory called JVMDependencies that stores dependency information for all the programs in your project. The JVMDependencies folder is not intended for distribution. If you want to package the contents of the output directory into a jar file, Micro Focus recommends that you turn off the incremental build feature and do a full clean rebuild.

    You can force a complete rebuild of the project manually by selecting Project > Clean.

    Micro Focus recommends that you clean your project and build before packaging for distribution.

Previous Topic Next topic Print topic