Intel® Fortran Compiler XE 13.1 User and Reference Guides

dyncom, Qdyncom

Enables dynamic allocation of common blocks at run time.

IDE Equivalent

Windows: Data > Dynamic Common Blocks

Linux: None

OS X: Data > Dynamic Common Blocks

Architectures

All

Syntax

Linux and OS X:

-dyncom "common1,common2,..."

Windows:

/Qdyncom "common1,common2,..."

Arguments

common1,common2,...

Are the names of the common blocks to be dynamically allocated. The list of names must be within quotes.

Default

OFF

Common blocks are not dynamically allocated at run time.

Description

This option enables dynamic allocation of the specified common blocks at run time. For example, to enable dynamic allocation of common blocks a, b, and c at run time, use this syntax:

/Qdyncom "a,b,c"    ! on Windows systems
-dyncom "a,b,c"     ! on Linux and OS X systems

The following are some limitations that you should be aware of when using this option:

Alternate Options

None


Submit feedback on this help topic