PRB: F1050: Code Segment Too Large (49515)



The information in this article applies to:

  • Microsoft FORTRAN Compiler for MS-DOS 3.31
  • Microsoft FORTRAN Compiler for MS-DOS 4.0
  • Microsoft FORTRAN Compiler for MS-DOS 4.01
  • Microsoft FORTRAN Compiler for MS-DOS 4.1
  • Microsoft FORTRAN Compiler for MS-DOS 5.0
  • Microsoft FORTRAN Compiler for MS-DOS 5.1
  • Microsoft FORTRAN compiler for OS/2 4.1
  • Microsoft FORTRAN compiler for OS/2 5.0
  • Microsoft FORTRAN compiler for OS/2 5.1

This article was previously published under Q49515

SYMPTOMS

An attempt to compile an application fails and the compiler generates the following message:
F1050: CODE SEGMENT TOO LARGE

CAUSE

The amount of code in one module exceeds 64K. Microsoft FORTRAN places the code from each "module," or compiled source file, into its own segment. Therefore, each module is restricted to 64K or less in both MS-DOS and OS/2 (unless using flat model).

RESOLUTION

To avoid this problem, break the source file into separate source files, compile each source file separately, and link the application into an EXE file. If the original source file contains subroutines or functions, place some of them into a separate source file. Otherwise, first break the source code into subroutines or functions and apply the methods listed above.

Modification Type:MajorLast Reviewed:12/1/2003
Keywords:KB49515