C/C++ Compiler (cl.hlp) (Table of Contents; Topic list)
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.
                                    -♦-