NO

Author Topic: warning #2107  (Read 2717 times)

Alessio

  • Guest
warning #2107
« on: December 10, 2007, 01:11:25 PM »
Hi,

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

Code: [Select]
float dValued[17568][36];
on compiling this warning appears:

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

Why ?

Thanks.

Offline Pelle

  • Administrator
  • Member
  • *****
  • Posts: 2266
    • http://www.smorgasbordet.com
Re: warning #2107
« Reply #1 on: December 10, 2007, 07:28:11 PM »
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