The information in this article applies to:
SYMPTOMSAn attempt to compile an application fails and the compiler generates the following message:
CAUSEThe 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). RESOLUTIONTo 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. Additional query words: 3.30 4.00 nofps 4.10 5.00 5.10 VAX port
Keywords : |
Last Reviewed: November 2, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |