Can someone help me diagnose this problem? CCSv5.1, C5515.
>> INTERNAL ERROR: Space required for local variables exceeds maximum in _mainThis may be a serious problem. Please contact customer support with adescription of this problem and a sample of the source files that caused thisINTERNAL ERROR message to appear.Cannot continue compilation - ABORTING!
Thx,
MikeH
Mike,
Please send us the source file that generates this error along with the compile options used so we can reproduce the problem. The best would be a preprocessed file. Please see this page for information on how to create a preprocessed file. If you prefer to not attach it to the forum, you can share it via private conversation.
If a post answers your question please mark it with the "Verify Answer" button
Search the wikis for common questions: CGT, BIOS, CCSv3, CCSv4Track a known bug with SDOWP. Enter the bug id in the "Find Record ID" box
That message means you've got too many local variables in your function. C55x can't handle a call frame that large. You'll need to make some of them static local or global variables, or dynamically allocate them.