This release of the HP C compiler includes options which provide
compatibility support for the IA-64 version of HP C. These include
the following:
-b |
 |
The -b option causes the linker to create a shared library
rather than a normal executable file. Object files that are processed
with this option must contain position-independent code (PIC).
Errors will be issued if -b is used with the -noshared or -exec options.
See the HP-UX Linker and Libraries Online User's
Guide, and the HP C Online Help
for more information about the linker.
-O/+O |
 |
The HP C compiler optimization features have been changed
so that any compiler optimization option of the form +O[optionname] can now be also specified as -O[optionname].
+O[no]inline:filename |
 |
The +O[no]inline:filename option enables/disables
optimizer inlining for the functions specified by the filename parameter.
The filename parameter contains a list of function names, separated
by spaces or newlines. The +O[no]inline option can occur at optimization levels +O3 and
+O4. The default is +Oinline.