aCC -V app.C

aCC: HP aC++/ANSI C B3910B A.06.00 [Aug 25 2004]

ld: 92453-07 linker ld HP Itanium(R) B.12.24 PBO 040820 (IPF/IPF)

Concatenating Options

You can concatenate some options to the aCC 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.

Examples:

Suppose you want to compile my_file.C using the options -vand -g1. Below are equivalent command lines you can use:

aCC my_file.C -v -g1

aCC my_file.C -vg1

aCC my_file.C -vg1

aCC -vg1 my_file.C

Concatenating Options

95