C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
Important Notice
The pages on this site contain documentation for very old MS-DOS software, purely for historical purposes. If you're looking for up-to-date documentation, particularly for programming, you should not rely on the information found here, as it will be woefully out of date.
C1060
                                             Up Contents Index Back
────────────────────────────────────────────────────────────────────────────
 
     Fatal error C1060
 
     compiler is out of far heap space
 
     The compiler ran out of storage for items that it stores in its
     far heap. Usually this is the result of having too many symbols.
 
     One of the following may be a solution:
 
        ■ Eliminate unnecessary include files, especially unneeded
          #defines and function prototypes.
 
        ■ Eliminate some global variables.
 
        ■ Split the current file into two or more files and compile
          them separately.
 
        ■ Remove other programs or drivers running in the system,
          which could be consuming significant amounts of memory.
                                    -♦-