Compaq COBOL
User Manual


Previous Contents Index

1.2.3.3 Specifying Types of Object Libraries

Certain cobol flags influence whether ld searches for an archive ( .a ) or shared object ( .so ) library on the standard list of COBOL libraries and any additional libraries specified using the -l string or -L dir flags. These flags are the following:

External references found in an archive library result in that routine being included in the resulting executable program file at link time.

External references found in a shared object library result in a special link to that library being included in the resulting executable program file, instead of the actual routine itself. When you run the program, this link gets resolved by either using the shared library in memory (if it already exists) or loading it into memory from disk.

1.2.3.4 Creating Shared Object Libraries

To create a shared library, first create the .o file, such as octagon.o in the following example:


% cobol  -O3 -c octagon.cob

The file octagon.o is then used as input to the ld command to create the shared library, named octagon.so :


% ld -shared -no_archive octagon.o \
     -lcob -lcurses -lFutil -lots2 -lots -lisam -lsort -lexc -lmld -lm 

A description of each ld flag follows:

1.2.3.5 Shared Library Restrictions

When creating a shared library using ld , be aware of the following restrictions:

1.2.3.6 Installing Shared Libraries

Once the shared library is created, it must be installed before you run a program that refers to it. The following describes how you can install a shared library for private or systemwide use:

For complete information on installing shared libraries, see your operating system documentation.

Specifying Shared Object Libraries

When you link your program with a shared library, all symbols must be referenced before ld searches the shared library, so you should always specify libraries at the end of the cobol command line after all file names. Unless you specify the -non_shared flag, shared libraries will be searched before the corresponding archive libraries.

For instance, the following command generates an error if the file rest.o references routines in the library libX :


% cobol -call_shared test.cob -lX rest.o

The correct order follows:


% cobol -call_shared test.cob rest.o -lX

Link errors can occur with symbols that are defined twice, as when both an archive and shared object are specified on the same command line. In general, specify any archive libraries after the last file name, followed by any shared libraries at the end of the command line.

Before you reference a shared library at run time, it must be installed.

1.2.3.7 Interpreting Messages from the Linker

If the linker detects any errors while linking object modules, it displays messages about their cause and severity. If any errors occur, the linker does not produce an image file.

Linker messages are descriptive, and you do not normally need additional information to determine the specific error. The general format for ld messages follows:


ld: 
message-text

The message-text may be on multiple lines and is sometimes accompanied by a cobol error.

Some common errors that occur during linking resemble the following:

If an error occurs when you link modules, you may be able to correct it by retyping the command string and specifying the correct routines or libraries ( -l string flag, -L dir flag), or specify the object library or object modules on the command line.

1.2.4 Running a Compaq COBOL Program on Tru64 UNIX

The simplest form of the run command to execute a program is to type its file name at the operating system prompt, as follows:


% myprog.out

In addition to normal IO accesses, your Compaq COBOL programs can read command-line arguments and access (read and write) environment variables.

1.2.4.1 Accessing Command-Line Arguments

Command-line arguments allow you to provide information to a program at run time. Your program provides the logic to parse the command line, identify command-line options, and act upon them. For example, you might develop a program that will extract a given amount of data from a specified file, where both the number of records to read and the file name are highly dynamic, changing for each activation of your program. In this case your program would contain code that reads a command-line argument for the number of records to read, and a second argument for the file specification. Your program execution command could look like the following:


% myprog 1028 powers.dat

In the preceding example the program myprog would read 1028 records from the file powers.dat.

Multiple command-line arguments are delimited by spaces, as shown in the preceding example. If an argument itself contains spaces, enclose that argument in quotation marks (" ") as follows:


% myprog2 "all of this is argument 1" argument2

You provide definitions for the command-line arguments with the SPECIAL-NAMES paragraph in your program's Environment Division, and you include ACCEPT and DISPLAY statements in the Procedure Division to parse the command line and access the arguments. Detailed information about command-line argument capability is in the ACCEPT and DISPLAY sections in the Compaq COBOL Reference Manual.

1.2.4.2 Accessing Environment Variables

You can read and write environment variables at run time through your Compaq COBOL program.

Example 1-1 allows you to specify a file specification by putting the directory in the value of the environment variable COBOLPATH, and the file name in a command-line argument:

Example 1-1 Accessing Environment Variables and Command-Line Arguments

identification division. 
PROGRAM-ID. MYPROG. 
ENVIRONMENT DIVISION. 
CONFIGURATION SECTION. 
SPECIAL-NAMES. 
    SYSERR              IS STANDARD-ERROR 
    ENVIRONMENT-NAME    IS NAME-OF-ENVIRONMENT-VARIABLE 
    ENVIRONMENT-VALUE   IS ENVIRONMENT-VARIABLE 
    ARGUMENT-NUMBER     IS POS-OF-COMMAND-LINE-ARGUMENT 
    ARGUMENT-VALUE      IS COMMAND-LINE-ARGUMENT. 
 
DATA DIVISION. 
WORKING-STORAGE SECTION. 
01 howmany-records PIC 9(5). 
01 env-dir PIC x(50). 
01 file-name PIC x(50). 
01 file-spec PIC x(100). 
PROCEDURE DIVISION. 
BEGIN. 
  ACCEPT howmany-records FROM COMMAND-LINE-ARGUMENT 
    ON EXCEPTION 
      DISPLAY "No arguments specified" 
        UPON STANDARD-ERROR 
      END-DISPLAY 
      STOP RUN 
  END-ACCEPT. 
    
  DISPLAY "COBOLPATH" UPON NAME-OF-ENVIRONMENT-VARIABLE. 
  ACCEPT env-dir FROM ENVIRONMENT-VARIABLE 
    ON EXCEPTION 
      DISPLAY "Environment variable COBOLPATH is not set" 
        UPON STANDARD-ERROR 
      END-DISPLAY 
    NOT ON EXCEPTION 
      ACCEPT file-name FROM COMMAND-LINE-ARGUMENT 
        ON EXCEPTION 
          DISPLAY 
          "Attempt to read beyond end of command line" 
            UPON STANDARD-ERROR 
          END-DISPLAY 
        NOT ON EXCEPTION 
          STRING env-dir "/" file-name delimited by " " into file-spec 
          DISPLAY "Would have read " howmany-records " records from " file-spec 
      END-ACCEPT 
  END-ACCEPT. 

This example requires that the following command has been executed to set an environment variable:


% setenv COBOLPATH /usr/files 

When you execute the following command lines:


% cobol -o myprog myprog.cob
% myprog 1028 powers.dat

The following will result:

For additional information, see the ACCEPT and DISPLAY statements in the Compaq COBOL Reference Manual.

1.2.4.3 Errors and Switches

See Section 1.4 for a discussion of errors that can cause incorrect or undesirable results when you run a program.

See Section 1.5 for a discussion of controlling program execution with switches.

1.2.5 Program Development Stages and Tools

This manual primarily addresses the program development activities associated with development and testing phases. For information about topics usually considered during application design, specification, and maintenance, see your operating system documentation, appropriate reference pages, or appropriate commercially published documentation.

Table 1-3 lists and describes some of the software tools you can use when developing and testing a program.

Table 1-3 Main Tools for Program Development and Testing
Task or Activity Tool and Description
Manage source files Use RCS or sccs to manage source files. For more information, see the Tru64 UNIX documentation on programming support tools or the appropriate reference page.
Create and modify source files Use a text editor, such as vi , emacs , or another editor. For more information, see your operating system documentation.
Analyze source code Use searching commands such as grep and diff . For more information, see the Tru64 UNIX documentation on programming support tools or the appropriate reference page.
Build program (compile and link) You can use the cobol command to create small programs, perhaps using shell scripts, or use the make command to build your application in an automated fashion using a makefile. For more information on make , see the make(1) reference page and the Tru64 UNIX documentation on programming support tools.
Debug and test program Use the Ladebug Debugger to debug your program or run it for general testing. For more information on Ladebug Debugger, see the Ladebug Debugger Manual.
Install program Use setld and related commands such as tar . For more information, see the Tru64 UNIX documentation on programming support tools.

In addition, you might use the following shell commands at various times during program development:

Note

The CALL dataname, CANCEL, and the Compaq extensions to the ACCEPT and DISPLAY statements will not work correctly if you use the strip command on your image.

In most instances, use the cobol command to invoke both the Compaq COBOL compiler and the ld linker. To link one or more object files created by the Compaq COBOL compiler, you should use the cobol command instead of the ld command, because the cobol command automatically references the appropriate Compaq COBOL Run-Time Libraries when it invokes ld . If the executable image is not in your current working directory, specify the directory path in addition to the file name. <>

Compilation does the following for you:

You use the COBOL command to compile and link your program. The COBOL command invokes the Compaq COBOL compiler driver that is the actual user interface to the Compaq COBOL compiler. The compiler driver can accept command options and multiple file names, and normally causes the compiler and linker to process each file. A variety of qualifiers to the compile command are available to specify optional processing and to specify the names of output files.

After the Compaq COBOL compiler processes the source files to create one or more object files, the compiler driver passes a list of object files and other information to the linker.

1.3 Developing Programs on OpenVMS Alpha

You use DCL commands (commands used at the OpenVMS Alpha system prompt) to create, compile, link, and run Compaq COBOL programs on OpenVMS Alpha systems.

1.3.1 Creating a Compaq COBOL Program on OpenVMS Alpha

To create and modify a Compaq COBOL program, you must invoke a text editor. The default editor for OpenVMS Alpha is the DEC Text Processing Utility (DECTPU). Other editors, such as EDT or the Language-Sensitive Editor (LSE), may be available on your system. Check with your system administrator and refer to the OpenVMS EDT Reference Manual (this manual has been archived but is available on the OpenVMS Documentation CD-ROM) for more information about EDT or the Guide to Language-Sensitive Editor for additional information about LSE.

Figure 1-2 shows the basic steps in Compaq COBOL program development.

Figure 1-2 DCL Commands for Developing Programs


Use the text editor of your preference to create and revise your source files. For example, the following command line invokes the DECTPU editor and creates the source file PROG_1.COB:


$ EDIT PROG_1.COB

The file type .COB is used to indicate that you are creating a Compaq COBOL program. COB is the default file type for all Compaq COBOL programs.

The COPY Statement, Dictionaries and Libraries

Including the COPY statement in your program allows separate programs to share common source text, reducing development and testing time as well as storage requirements. You can use the COPY statement to access modules in libraries. The COPY statement causes the compiler to read the file or module specified during the compilation of a program. When the compiler reaches the end of the included text, it resumes reading from the previous input file.

By using the /INCLUDE qualifier on the COBOL command line, you can set up a search list for files specified by the COPY statement. For more information, see the Compaq COBOL Reference Manual.

You can use the COPY FROM DICTIONARY statement in your program to access a data dictionary and copy Oracle CDD/Repository record descriptions into your program as COBOL record descriptions. Before you can copy record descriptions from Oracle CDD/Repository, you must create the record descriptions using the Common Data Dictionary Language (CDDL) or Common Dictionary Operator (CDO).

For more information about using Oracle CDD/Repository and creating and maintaining text libraries, refer to the Compaq COBOL Reference Manual and Using Oracle CDD/Repository on OpenVMS Systems.


Previous Next Contents Index