全局变量
extern int sxmobi_ph_city_size;
int size = sxmobi_ph_city_size*sizeof(unsigned int);
MTK编译会报Serious error: C2432E: non-constant initialiser的错误
改成如下就不会
extern int sxmobi_ph_city_size;
int size;
void f()
{
size = sxmobi_ph_city_size*sizeof(unsigned int);
}