Table of Contents
Why I get RMake error "R3005: Internal space exhausted" ?
Why I get RMake error "R3006: Symbol table exhausted" ?
Why I get RMake error "R3005: Internal space exhausted" ?
The default size of internal workspace in RMake is 2048 bytes, and you can enlarge the size by specifying larger number in /XW option.
To make it permanently, put SET RMAKE=/xw10240 in your AUTOEXEC.BAT
Go Top
Why I get RMake error "R3006: Symbol table exhausted" ?
This error will occur when the internal symbol table is not enough. By default, it can accommodate 500 symbols only. You can fix the error by
increasing the parameter specified in /XS option. You can also specify SET RMAKE=/xs1024 in AUTOEXEC.BAT
Go Top