error C2466: cannot allocate an array of constant size 0

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

Cpp代码   收藏代码
  1. <VS2005安装目录>\VC\include\sys/stat.inl(44) : error C2466: 不能分配常量大小为 0 的数组  

 

,出现这种情况时,只需在 <VS2005安装目录>\vc\include\malloc.h 文件中找到:

Cpp代码   收藏代码
  1. #define _STATIC_ASSERT(expr) typedef char __static_assert_t[ (expr) ]  

 

并改成:

Cpp代码   收藏代码
  1. #ifdef PHP_WIN32  
  2. #define _STATIC_ASSERT(expr) typedef char __static_assert_t[ (expr)?(expr):1 ]  
  3. #else  
  4. #define _STATIC_ASSERT(expr) typedef char __static_assert_t[ (expr) ]  
  5. #endif  

 就可以了。 


或者
修改php-5.2.9源码包中的
main\config.w32.h
将"#define _USE_32BIT_TIME_T 1"注释
(还未调研此宏的作用,有一定风险)

你可能感兴趣的:(error C2466: cannot allocate an array of constant size 0)