HP aC++/HP C A.06.25 Programmer's Guide
Description
num
Increasing levels of inliner aggressiveness.2.0 < num < 9.0
Attempts to inline all functions other than recursive functions or those with a variable
number of arguments.
9
The default level depends on +Olevel as shown in the following table:
numlevel
10
11
22
23
24
The +O[no]inline option controls the high-level optimizer that recognizes other
opportunities in the same source file (+O3) or amongst all source files (+O4). For
example,
aCC +inline_level 3 app.C
Library Options
Library options allow you to create, use, and manipulate libraries.
-b
-b
The -b option creates a shared library rather than an executable file.
Example:
The following command links utils.o and creates the shared library utils.so.
aCC -b utils.o -o utils.so
For more information on shared libraries, see “Creating and Using Libraries” (page 230).
-dynamic
-dynamic
The -dynamic option produces dynamically bound executables. See “-minshared”
(page 64) for partially statically bound executables.
The default is -dynamic.
62 Command-Line Options