Hi,
when compiling with debug information, I get an error:
fatal error C1067: compiler limit : debug information module size exceeded
The error is caused by a very large enum (about 2000 elements) which comes
from a referenced component.
Is there any workaround to make a debug build and keep the enum?
Cheers,
Dirk
Oleg Starodumov - 31 Mar 2006 09:59 GMT
> when compiling with debug information, I get an error:
> fatal error C1067: compiler limit : debug information module size exceeded
[quoted text clipped - 3 lines]
>
> Is there any workaround to make a debug build and keep the enum?
If you can change the enum declaration, try this:
#pragma component (mintypeinfo, on )
enum YourEnum
{
.
} ;
#pragma component (mintypeinfo, off)
Regards,
Oleg
[VC++ MVP http://www.debuginfo.com/]