Workaround for fatal error C1067: debug information module size ex

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
 
O

Oleg Starodumov

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
{
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top