FOR2131S
The program program-name was compiled by VS FORTRAN Version 2 compiler with the EC option, which is not supported by Language Environment.

Explanation

The program was compiled with VS FORTRAN Version 2 Release 5 or 6 with the EC compile-time option. This option specified that certain common blocks were be treated as extended common blocks and that their virtual storage was to be allocated in data spaces. You cannot run such a program if it has been link-edited with Language Environment.

System action

The condition is signaled. If the condition is unhandled, the application is terminated.

Qualifying Data: None

Permissible Resume Actions: None

Programmer response

If you want to link-edit and run the program with Language Environment, then compile it without the EC compile-time option. Specify the common blocks as dynamic common blocks by giving their names as suboptions of the DC compile-time option. However, unless you can reduce the size of the extended common blocks, this approach won't work if the program and the common blocks won't fit in the primary address space.

If you want to continue to run the program with extended common blocks, then link-edit it with the VS FORTRAN Version 2 Release 6 library. In this case, don't code anything in the program (including in any related subprograms) that makes use of any of the Language Environment features that aren't in VS FORTRAN Version 2 Release 6. You can then run the program either with the VS FORTRAN Version 2 Release 6 library or with Language Environment.

Symbolic Feedback Code

FOR2131