|
|
HP CUser's Guide for OpenVMS SystemsOrder Number: AA-PUNZM-TK
January 2005
This guide describes using the HP C compiler on OpenVMS systems. It contains information on HP C program development in the OpenVMS environment, HP C features specific to OpenVMS systems, and cross-system portability concerns.
Revision/Update Information:
This revised guide supersedes the
Operating System and Version:
OpenVMS I64 Version 8.2 or higher
Software Version: HP C Version 7.1 for OpenVMS Systems
© Copyright 2005 Hewlett-Packard Development Company, L.P. Confidential computer software. Valid license from HP required for possession, use or copying. Consistent with FAR 12.211 and 12.212, Commercial Computer Software, Computer Software Documentation, and Technical Data for Commercial Items are licensed to the U.S. Government under vendor's standard commercial license. The information contained herein is subject to change without notice. The only warranties for HP products and services are set forth in the express warranty statements accompanying such products and services. Nothing herein should be construed as constituting an additional warranty. HP shall not be liable for technical or editorial errors or omissions contained herein. UNIX is a registered trademark of The Open Group. X/Open is a registered trademark of X/Open Company Ltd. in the UK and other countries. Intel and Itanium are trademarks or registered trademarks of Intel Corporation or its subsidiaries in the United States and other countries. Printed in the US This document is available on CD-ROM. This document was prepared using DECdocument, Version V3.3-1e.
PrefaceThis guide contains the information necessary for developing and debugging HP C (formerly Compaq C) programs on the OpenVMS operating system. HP C provides a conforming implementation of ISO/IEC 9899:1990 [1994], sometimes informally called C89, C90, ANSI C, or standard C. It also provides complete language support for ISO/IEC 9899:1999, informally called C99, although not all run-time library routines are currently implemented, floating-point environment access controls are not effective, and Annex F (the optional __STDC_IEC_559__ extension) is not supported. HP C is a standard-conforming C compiler for the OpenVMS operating system on VAX, Alpha, and Intel® Itanium® processors and for the Tru64 UNIX® operating system on Alpha processors. HP OpenVMS Industry Standard 64 for Integrity Servers is the full product name of the OpenVMS operating system on Intel Itanium processors. The shortened forms, OpenVMS I64 and I64, are also used throughout this manual. Through use of command-line options, HP C is compatible with older dialects of C, including common usage C and VAX C. This guide also includes HP C language features specific to OpenVMS systems, as well as information about porting C programs to and from OpenVMS and other operating systems. For more information about porting programs to and from other operating systems, see the HP C Run-Time Library Reference Manual for OpenVMS Systems. You may send comments or suggestions regarding this guide or any HP C document by sending electronic mail to the following Internet address: c_docs@hp.com Intended AudienceThis guide is intended for experienced programmers who need to develop HP C programs on OpenVMS systems, for users who need to know the difference between HP C and other implementations, and for experienced C users who need to reference language information specific to OpenVMS systems. You should be familiar with one high-level language and should have some familiarity with the Digital Command Language (DCL). If you are not familiar with or need to reference information about the DCL, see Chapter 1. Document StructureThis guide has the following chapters and appendixes:
Associated DocumentsYou may find the following documents useful when programming in HP C:
Conventions Used in this DocumentTable 1 lists the conventions used in this guide.
Platform LabelsA platform is a combination of operating system and hardware that provides a distinct environment. This guide contains information applicable to the HP OpenVMS operating system on VAX, Alpha, and Intel Itanium processors. The information in this guide applies to all of these processors, except when specifically labeled as follows:
New and Changed FeaturesHP C Version 7.1 runs on OpenVMS Alpha and OpenVMS Industry Standard 64 systems. The compiler behaves much the same on both systems, with some differences, primarily in the support for #pragma linkage , built-in functions, default floating-point representation, and predefined macros. These differences are noted in the relevant sections of this manual.
Chapter 1
|
$ CC/LIST AVERAGE |
For a complete description of all CC command qualifiers, see Section 1.3.4.
After your program has compiled successfully, invoke the OpenVMS Linker to create an executable image file. For example:
$ LINK AVERAGE |
The linker uses the object file produced by HP C as input to produce an executable image file as output. (The executable image is a file containing program code that can be run on the system.)
You can specify command qualifiers with the DCL command LINK. For a complete list and explanation of all the command qualifiers available with the LINK command, see Section 1.4.2.
After producing the executable image file, use the RUN command to execute your program.
To create and modify an HP C program, you must invoke a text editor. The OpenVMS system provides you with two text editors: EDT and the OpenVMS Text Processing Utility (TPU). The following section discusses TPU. See the OpenVMS EDT Reference Manual for more information on EDT.
TPU is a high-performance, programmable utility. It provides two editing interfaces: the Extensible VAX Editor (EVE), described in the following section, and the TPU EDT Keypad Emulator. You can also create your own interfaces.
Like EDT, TPU provides you with an online help facility that you can access during your editing session. When you invoke TPU to create a file, a journal file is automatically created. You can use this journal file to recover your edits if the system fails during an editing session. To recover your edits, enter the EVE/RECOVER command.
Unlike EDT, TPU provides multiple windows. This feature allows you to view two files on your screen at the same time.
EVE is an interactive text editor that allows you to execute common editing functions using the EVE keypad or to execute more advanced functions by entering commands on the EVE command line. The following command line invokes the EVE editor and creates the file PROG_1.C:
$ EDIT/TPU PROG_1.C |
You can define a global symbol for the EDIT/TPU command by placing a symbol definition in your LOGIN.COM file. For example:
$ EVE == "EDIT/TPU" |
After this command line is executed, you can type EVE at the DCL prompt followed by the name of the file you want to modify or create.
For more information on using EVE, see the Guide to VMS Text Processing.
The HP C compiler performs the following functions:
The following sections discuss the CC command and its qualifiers.
To invoke the HP C compiler, enter the CC command at the DCL prompt ($). The CC command has the following format:
CC[/qualifier...][ file-spec [/qualifier...]],... |
This note applies to OpenVMS VAX systems that have both HP C and VAX C installed. The CC command is used to invoke either the VAX C or HP C compiler. If the HP C installation procedure detects that your system already has a VAX C compiler installed on it, the installer is given the option to specify which compiler gets invoked by default whenever the CC command verb is used. To invoke the compiler that is not the default, use the CC command with the appropriate qualifier: CC/DECC for the HP C compiler, or CC/VAXC for the VAX C compiler. Where the CC command appears in examples in this manual, CC/DECC is assumed to be the default. |
/qualifier
An action to be performed by the compiler on all files or specific files listed. When a qualifier appears directly after the CC command, it affects all the files listed. When a qualifier appears after a file specification, it affects only the file that immediately precedes it. However, when files are concatenated, these rules do not apply.file-spec
An input source file that contains the program or module to be compiled. You are not required to specify a file type if you give your file a .C file extension; the HP C compiler adopts the default file type C.
You can include more than one file specification on the same command line by separating the file specifications with either a comma (,) or a plus sign (+). If you separate the file specifications with commas, you can control which source files are affected by each qualifier. In the following example, the HP C compiler creates an object file for each source file but creates only a listing file for the source files PROG_1 and PROG_3:
$ CC /LIST PROG_1, PROG_2/NOLIST, PROG_3 |
If you separate file specifications with plus signs, the HP C compiler concatenates each of the specified source files and creates one object file and one listing file. In the following example, only one object file is created, PROG_1.OBJ, and only one listing file is created, PROG_1.LIS. Both of these files are named after the first source file in the list, but contain all three modules.
$ CC PROG_1 + PROG_2/LIST + PROG_3 |
Any qualifiers specified for a single file within a list of files separated with plus signs affect all the files in the list. See the description of the /PLUS_LIST_OPTIMIZE qualifier for its affect on file concatenation.
Concatenating source files without using the /PLUS_LIST_OPTIMIZE qualifier is not recommended because potential conflicts in the name space of declared objects can result in compilation errors or incorrect run-time behavior. |
A more common use of plus-list concatenation is for specifying text libraries. You can specify the name of a text library on the CC command line to compile a source program. A text library is a file that contains text organized into modules indexed by a table. Text libraries have a .TLB default file extension. In the following example, text libraries A.TLB and B.TLB are made available for searching for text library modules during the compilation of source file TEST.C:
$ CC TEST.C + A.TLB/LIB + B.TLB/LIB |
Header files are pieces of source code that typically contain declarations shared among C programs. A header file often declares a set of related functions, as well as defining any types and macros needed for their use.
To make the contents of a header file available to your program, include the header file using the #include preprocessor directive.
The #include directive has three forms. Two of the forms are defined by the C standard and are portable:
#include <file-spec> |
#include "file-spec" |
The third form is the text-module form. It is specific to OpenVMS systems and is not portable. See Section 5.2.3 for more information on the text-module form of inclusion.
The form of the #include directive used determines where the compiler will look to find the file to be included. Generally, the compiler looks in the following places, in the order listed:
You can use the UNUSED message group described in the #pragma message description in Section 5.4.14 to enable messages that report apparently unnecessary #include files (and CDD records). Unlike any other messages, these messages must be enabled on the command line (/WARNINGS=ENABLE=UNUSED), rather than with #pragma message , to be effective.
The HP C preprocessor is usually able to determine if a particular #include file that has already been processed once was guarded by the conventional sequence: #ifndef FILE_SEEN, #define FILE_SEEN, #endif .
When the compiler detects this pattern of use the first time a particular file is included, it remembers that fact as well as the name of the macro. The next time the same file is included, the compiler checks to see if the "FILE_SEEN" macro is still defined and, if so, it does not reopen and reread the file. Note that if the initial test is in the form #if !defined instead of #ifndef , then the pattern is not recognized. In a listing file, #include directives that are skipped because of this processing are marked with an "X" just as if the #include line itself were excluded.
See the /INCLUDE_DIRECTORY qualifier in Section 1.3.4 for a more complete description of the search-order rules that HP C uses to locate included files.
See the HP C Run-Time Library Reference Manual for OpenVMS Systems for information on the header files required to use HP C Run-Time Library (RTL) functions and macros.
Next | Contents | Index |
|