Intel® Fortran Compiler 16.0 User and Reference Guide

shared

Tells the compiler to produce a dynamic shared object instead of an executable.

Syntax

Linux:

-shared

OS X:

None

Windows:

None

Arguments

None

Default

OFF

The compiler produces an executable.

Description

This option tells the compiler to produce a dynamic shared object (DSO) instead of an executable. This includes linking in all libraries dynamically and passing -shared to the linker.

You must specify option fpic for the compilation of each object file you want to include in the shared library.

IDE Equivalent

None

Alternate Options

None

See Also