Linking

See detailed Linking section.

Option

Description

Default

-Bdynamic

Dynamically links libraries at run time. Compared to static linking, results in smaller executables.

OFF

-c

Compile to object only (.o), do not link.

OFF

-C90

Link with alternate I/O library for mixed output with the C language.

OFF

-i_dynamic

Enables to link Intel-provided libraries dynamically.

OFF

-Ldir

Instructs linker to search dir for libraries.

OFF

-lname

Link with a library indicated in name. For example, -lm indicates to link with the math library.

OFF

-p, -qp

Compile and link for function profiling with UNIX prof tool.

OFF

-posixlib

Enable linking with POSIX library.

OFF

-shared

Instructs the compiler to build a Dynamic Shared Object (DSO) instead of an executable.

OFF

-static

Enables to link shared libraries (.so) statically.

OFF

-Vaxlib

Enable linking with portability library.

OFF