[INFORMATION]
A static object was defined but not referenced. When using smart linking, this object will not be used.
static int i;
Remove the static object, comment it out or do not compile it with conditional compilation. Not referenced static functions often exist because the were used sometime ago but no longer or because the usage is present but not compiled because of conditional compilation.