Setting Run-Time Environment Variables

The Intel® Fortran run-time system recognizes a number of environment variables. These variables can be used to customize run-time diagnostic error reporting, allow program continuation under certain conditions, disable the display of certain dialog boxes under certain conditions, and allow just-in-time debugging. For a list of run-time environment variables used by OpenMP*, see OpenMP Environment Variables in Optimizing Applications.

For information on setting compile time environment variables, see Setting Compile-Time Environment Variables.

The run-time environment variables are:

Setting Environment Variables within a Program

You can set a run-time environment variable from within a program by calling the SETENVQQ routine. For example:

program ENVVAR

use ifport

LOGICAL(4) res  

! Add other data declarations here

! call SETENVQQ as a function  

res=SETENVQQ("FOR_IGNORE_EXCEPTIONS=T")