处理“error C2466: 不能分配常量大小为0 的数组”

用C/C++写PHP的扩展模块,如果VS2005编译,可能会出现下面的错误:

\VC\include\sys/stat.inl(44) : error C2466: 不能分配常量大小为 0 的数组

 

,出现这种情况时,只需在 \vc\include\malloc.h 文件中找到:

#define _STATIC_ASSERT(expr) typedef char __static_assert_t[ (expr) ]

 

并改成:

#ifdef PHP_WIN32
#define _STATIC_ASSERT(expr) typedef char __static_assert_t[ (expr)?(expr):1 ]
#else
#define _STATIC_ASSERT(expr) typedef char __static_assert_t[ (expr) ]
#endif

 就可以了。 

你可能感兴趣的:(T_L_PHP,T_C/C++,T_应用服务器,T_网络)