![]() |
![]() |
|
|
![]() |
![]() |
HP C/HP-UX Reference Manual: Version A.06.05 > Chapter 9 Compiling
and Running HP C Programs ![]() Compiling HP C Programs |
|
When you compile a program, it passes through one or more of the following steps depending upon which command line options you use:
Use the cc(1) command to compile HP C programs. It has the following format: cc [options] files where:
Files with names ending in .c are assumed to be HP C source files. Each HP C source file is compiled, producing an object file with the same name as the source file except that the .c extension is changed to a .o extension. However, if you compile and link a single source file into an HP C program in one step, the .o file is automatically deleted. Files with names ending in .i are assumed to be preprocessor output files. Files ending in .i are processed the same as .c files, except that the preprocessor is not run on the .i file before the file is compiled. Files with names ending in .s are assumed to be assembly source files; the compiler invokes the assembler to produce .o files from these. Files with .o extensions are assumed to be relocatable object files that are included in the linking. All other files are passed directly to the linker by the compiler. Each compiler option has the following format: -optionname [optionarg] where:
The optional argument -- delimits the end of options. Any following arguments are treated as operands (typically input filenames) even if they begin with the minus (-) character. By default, the cc command names the executable file a.out. For example, given the following command line: cc demo.c the executable file is named a.out. You can use the -o option to override the default name of the executable file produced by cc. For example, suppose my_source.c contains C source code and you want to create an executable file name my_executable. Then you would use the following command line: cc -o my_executable my_source.c You can concatenate some options to the cc command under a single prefix. The longest substring that matches an option is used. Only the last option can take an argument. You can concatenate option arguments with their options if the resulting string does not match a longer option. For example, suppose you want to compile my_file.c using the -v, -g, and -DPROG=sub compiler options. There are several ways to do this: cc my_file.c -v -g -DPROG=sub cc my_file.c -vgDPROG=sub Table 9-1 “HP C Compiler Options at a Glance ” summarizes the command line options supported by HP Integrity servers. Some of these options are HP aC++ options. Refer to HP aC++/HP C Programmer’s Guide for detailed information on compiler options. Table 9-1 HP C Compiler Options at a Glance
This section describes the following environment variables you can use to control the C compiler: You can pass arguments to the compiler using the CCOPTS environment variable or include them on the command line. The CCOPTS environment variable provides a convenient way for establishing default values for cc command line options. It also provides a way for overriding cc command line options. The syntax for the CCOPTS environment variable in C shell notation is: export CCOPTS="options | options" (ksh/sh notation) setenv CCOPTS "options | options" (csh notation) The compiler places the arguments that appear before the vertical bar in front of the command line arguments to cc. It then places the second group of arguments after any command line arguments to cc. Options that appear after the vertical bar in the CCOPTS variable override and take precedence over options supplied on the cc command line. If the vertical bar is omitted, the compiler gets the value of CCOPTS and places its contents before any arguments on the command line. For example, the following in C shell notation setenv CCOPTS -v is equivalent to cc -v -g prog.c For example, the following in C shell notation setenv CCOPTS "-v | +O1" is equivalent to cc -v +O2 prog.c +O1 In the above example, level 1 optimization is performed, since the +O1 argument appearing after the vertical bar in CCOPTS takes precedence over the cc command line arguments. The CCROOTDIR environment variable causes aCC to invoke all subprocesses from an alternate aCC directory, rather than from their default directory. The default aCC root directory is /opt/aCC. Syntax:
directory is an aCC root directory where you want the HP aC++ driver to search for subprocesses. Example: export CCROOTDIR=/mnt/CXX2.1 In this example, HP aC++ searches the directories under /mnt/CXX2.1 (/mnt/CXX2.1/bin and /mnt/CXX2.1/lbin) for subprocesses rather than their respective default directories. Another environment variable, TMPDIR, allows you to change the location of temporary files that the compiler creates and uses. The directory specified in TMPDIR replaces /var/tmp as the default directory for temporary files. The syntax for TMPDIR in C shell notation is: export TMPDIR=directory (ksh/sh notation) setenv TMPDIR directory (csh notation) directory is the name of an HP-UX directory where you want HP C to put temporary files during compilation. This release of HP C compiler provides support to specify the maximum number of errors emitted before the compilation aborts. In the earlier versions, the compiler stopped, if it recognized more than 99 errors while compiling. With this release, the maximum number of errors that the compiler emits can be tuned as required by setting the aCC_MAXERR environment variable. The syntax for aCC_MAXERR in C shell notation is: export aCC_MAXERR=errors where errors are the maximum number of errors set. SDK/XDK, helps you in selecting the components, headerfiles, and libraries installed in alternate locations. To enable this support in your compiler, you need to set either one or both of the following environment variables:
The SDKROOT environment variable is used as a prefix for all references to tool set components. This environment variables is set by the user while using a non-native development kit or toolset installed at an alternative location. Some of the toolset components are compiler drivers, compiler applications, preprocessor, linker, and object file tools. If the HP C compiler has its tool set installed in /opt/xdk-ia/directory then the command: export SDKROOT=/opt/xdk-ia will prefix all references to the HP C compiler tool set components with /opt/xdk-ia. The following details the default tool set components location as specified in the above command and its earlier location before the execution of the command: Table 9-2 Native and Alternate Toolset Location
Invoking the toolset components will actually result in the invocation of tool set components from the alternate location as specified above. The TARGETROOT environment variable is used as a prefix for all references to target set components. This environment variable is set by the user when using a non-native development kit. Some of the target set components are header files, archive libraries, and shared libraries. If the HP C compiler has its large tool set installed in /opt/xdk-ia/ directory, the command: export TARGETROOT=opt/xdk-ia will prefix all references to the target tool set components with /opt/xdk-ia. The following details the default location of the tool set components as specified in the above command and its earlier location before the execution of the command: Table 9-3 Native and Alternate Toolset Location
|
![]() |
||
![]() |
![]() |
![]() |
|||||||||||||
|