C3300: String buffer overflow

[FATAL]

Description

The compiler can handle a maximum of about 10'000 strings in a compilation unit. If the compilation unit contains too many strings, this message will appear.

Example
  A source file with more than 10'000 strings, e.g.

  
  char *chPtr[] = {"string", "string1",

  
                   "string2", ... "string1000"};

  
Tips

Split up the source file into parts with less then 10'000 strings.

See also