lua加密Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32 bytes)

运行的是: ./compile_scripts.sh -i src -o todir -e xxtea_chunk -m files -ek MYKEY -es XT

编译一会就报这个错了:

Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 32 bytes)

文件太大了…你是不是搞错了,这个工具是打包lua代码的,你的lua文件能有这么大吗?

如果确实文件太大,可以在quick/bin/lib/compile_scripts.php文件前面加一句:
ini_set(‘memory_limit’,‘256M’);

具体可以参考quick/bin/lib/pack_files.php这个文件。

这样可以。谢谢了。