Workaround for fatal error C1067: debug information module size ex

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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?

If you can change the enum declaration, try this:

#pragma component (mintypeinfo, on )
enum YourEnum
{
 
Back
Top