News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

warning #2107

Started by Alessio, December 10, 2007, 01:11:25 PM

Previous topic - Next topic

Alessio

Hi,

I defined a huge 2d array in my code in this way:

float dValued[17568][36];

on compiling this warning appears:

warning #2107: [ISO] More than 65535 bytes in 'float [36] [17568,36]'.

Why ?

Thanks.

Pelle

Your array object is larger than the required minimum for a C99 compiler (hosted environment), so compiling with a different C99 compiler than Pelles C could possibly fail...
/Pelle