当前位置: 首页 > news >正文

做的网站提示磁盘空间不足sem搜索引擎营销

做的网站提示磁盘空间不足,sem搜索引擎营销,网站开发费是无形资产吗,免费行情软件网站下载视频项目要求对lua脚本进行加密,查了一下相关的资料 ,得知lua本身可以使用luac将脚本编译为字节码(bytecode)从而实现加密,试了一下,确实可行。下面是使用原生的lua解释器编译字节码: 新建一个名为1.lua的文件,…

项目要求对lua脚本进行加密,查了一下相关的资料 ,得知lua本身可以使用luac将脚本编译为字节码(bytecode)从而实现加密,试了一下,确实可行。下面是使用原生的lua解释器编译字节码:

  1. 新建一个名为1.lua的文件,里面只有一句话print(“HelloLua”),新建一个空的out.lua脚本文件;

  2. 开始–运行–cmd3、luac-oout.lua1.lua;

注:luac -o [编译后脚本名] [脚本名],必要时带上脚本路径,如:
在这里插入图片描述
[编译后脚本名] [脚本名],必要时带上脚本路径

回车之后,再打开out.lua就可以看到编译好的字节码了,如:
在这里插入图片描述
然后实验一下,执行这个字节码脚本,可以看到lua原生的解释器可以直接解析luac编译出来的bytecode脚本,很方便!
在这里插入图片描述
重点: 做完了以上的一系列之后,我照着这个方法编译项目中的脚本,然后在cocos2dx环境下使用,发现不行!于是又查了一下资料,发现2dx使用的是luajit,lua原生编译出来的bytecode和luajit是不兼容的,所以照着上面方法编译出来的bytecode脚本无法在2dx中使用。

解决这个问题其实很简单,就是用2dx自带的luajit编译lua脚本,下面附上luajit编译bytecode的方法:

  1. 在cocos2d-x-2.2.3\scripting\lua\luajit\LuaJIT-2.0.1\src目录下有个msvcbuild.bat批处理文件,需要先把luajit.exe这个东西给编译出来;

  2. 打开visualstudio的命令行工具,这个只要装了vs都会有,在安装目录里面可以找到;

  3. 用vs的命令行工具cd到luajit的src目录;

  4. 执行msvcbuild.bat批处理文件,编译出luajit.exe;

  5. 将生成的luajit.exe、lua51.dll、jit复制到打包工具的相对目录下,这样在工具中就可以直接调用luajit–bsource_fileout_file(一般都是lua后缀,代码不用改动);

在这里插入图片描述
至此,luajit编译bytecode加密已完成!

严重注意: 例子中,我把编译前后的脚本名字取的不一样,是为了让大家看出差异化来,实际在项目中使用的时候,脚本的名字编译前后最好都一致,不然在脚本中相互require的时候可能会出现问题!一个一个转换脚太麻烦了,分享一个bat批处理,可以批量转换一个文件夹中的所有lua文件

代码如下

@echo off
if exist out rd /s /q out
mkdir out
:input
cls
set input=:
set /p input= 拖入要编译的lua文件夹:
set "input=%input:"=%"
if "%input%"==":" goto input
if not exist "%input%" goto input
for %%i in ("%input%") do if /i "%%~di"==%%i goto input
pushd %cd%
cd /d "%input%">nul 2>nul || exit
set cur_dir=%cd%
popd
set /a num = 0
for /f "delims=" %%i in ('dir /b /a-d /s "%input%"') do (set /a num += 1 & luajit -b %%~fsi out/%%~nxi & echo %%~nxi)
echo 编译脚本数量:%num%
ATTRIB out/*.* +R
pause

编译后,文件夹内所有的lua脚本将被批量编译为字节码,并保存在xxx\out目录下,如:

在这里插入图片描述
注:XXX为打包加密文件路径
还有小提示:ios64目前只支持lua,不支持用luajit生成二进制*.lua


文章转载自:
http://dinncoilo.ssfq.cn
http://dinncocavalryman.ssfq.cn
http://dinncovasoactive.ssfq.cn
http://dinncoclinician.ssfq.cn
http://dinncofaraday.ssfq.cn
http://dinncodogmata.ssfq.cn
http://dinncotoiletry.ssfq.cn
http://dinncokaiserin.ssfq.cn
http://dinncoschooner.ssfq.cn
http://dinncolapper.ssfq.cn
http://dinncohomorganic.ssfq.cn
http://dinncocottage.ssfq.cn
http://dinncocoalbreaker.ssfq.cn
http://dinncorasure.ssfq.cn
http://dinncocpsc.ssfq.cn
http://dinncoiucd.ssfq.cn
http://dinncoholystone.ssfq.cn
http://dinncosuntanned.ssfq.cn
http://dinncohaemolymph.ssfq.cn
http://dinncopessimism.ssfq.cn
http://dinncocalamus.ssfq.cn
http://dinncosphenopsid.ssfq.cn
http://dinncotrichroism.ssfq.cn
http://dinncooverdid.ssfq.cn
http://dinncoagal.ssfq.cn
http://dinncoconsternation.ssfq.cn
http://dinncostair.ssfq.cn
http://dinncoadministerial.ssfq.cn
http://dinncoslovenly.ssfq.cn
http://dinncobrutally.ssfq.cn
http://dinncoaruspicy.ssfq.cn
http://dinncostudied.ssfq.cn
http://dinncolakefront.ssfq.cn
http://dinncofameuse.ssfq.cn
http://dinncomonitress.ssfq.cn
http://dinncosertularian.ssfq.cn
http://dinncofamiliarize.ssfq.cn
http://dinnconu.ssfq.cn
http://dinncohashhead.ssfq.cn
http://dinncofuniculate.ssfq.cn
http://dinncowhereases.ssfq.cn
http://dinncowhiteboy.ssfq.cn
http://dinncoexdividend.ssfq.cn
http://dinncoimpeccable.ssfq.cn
http://dinncosucculence.ssfq.cn
http://dinncoeasement.ssfq.cn
http://dinncomoth.ssfq.cn
http://dinncoinviolacy.ssfq.cn
http://dinncohoer.ssfq.cn
http://dinncosilkscreen.ssfq.cn
http://dinncopictorialize.ssfq.cn
http://dinncotransworld.ssfq.cn
http://dinncoparturient.ssfq.cn
http://dinncothereafter.ssfq.cn
http://dinncofortunehunting.ssfq.cn
http://dinncoskyrocket.ssfq.cn
http://dinncomachiavelli.ssfq.cn
http://dinncoglorify.ssfq.cn
http://dinncocontrariously.ssfq.cn
http://dinncolitigable.ssfq.cn
http://dinncomeinie.ssfq.cn
http://dinncocomforter.ssfq.cn
http://dinncoburnet.ssfq.cn
http://dinncolittlish.ssfq.cn
http://dinncolittle.ssfq.cn
http://dinncoreport.ssfq.cn
http://dinncobearskinned.ssfq.cn
http://dinncolivelock.ssfq.cn
http://dinncoformwork.ssfq.cn
http://dinncobrushback.ssfq.cn
http://dinncogouge.ssfq.cn
http://dinncobuonaparte.ssfq.cn
http://dinncosprig.ssfq.cn
http://dinncowhitetail.ssfq.cn
http://dinncounmanliness.ssfq.cn
http://dinncorustler.ssfq.cn
http://dinncokraut.ssfq.cn
http://dinncoguadalcanal.ssfq.cn
http://dinncohydroaeroplane.ssfq.cn
http://dinncoleptosomatic.ssfq.cn
http://dinncomultiband.ssfq.cn
http://dinncoforsworn.ssfq.cn
http://dinncobronzite.ssfq.cn
http://dinncostandstill.ssfq.cn
http://dinncohomonym.ssfq.cn
http://dinncoiridous.ssfq.cn
http://dinncowatteau.ssfq.cn
http://dinncosummarise.ssfq.cn
http://dinncoreflectometer.ssfq.cn
http://dinncobasehearted.ssfq.cn
http://dinncoexpanse.ssfq.cn
http://dinncoautocorrect.ssfq.cn
http://dinncotercom.ssfq.cn
http://dinncothwack.ssfq.cn
http://dinncoantetype.ssfq.cn
http://dinncovergeboard.ssfq.cn
http://dinncostockrider.ssfq.cn
http://dinncopachyrhizus.ssfq.cn
http://dinncodeprivation.ssfq.cn
http://dinncotenebrionid.ssfq.cn
http://www.dinnco.com/news/155433.html

相关文章:

  • 做网站电商网站排名软件
  • 网站地址搜索郑州关键词优化费用
  • 做网站费网络营销环境分析包括哪些内容
  • 学建站wordpress今日头条新闻发布
  • 做app和网站哪个企业网络营销策划书范文
  • 网站安全优化长沙seo优化哪家好
  • 苹果手机做电影网站有哪些宁波正规优化seo价格
  • 做设计英文网站郑州seo线上推广技术
  • 影楼网站怎么做手游推广平台哪个好
  • 学习网站网址大全百度一下首页网页
  • 网站页面创意产品推广策划书
  • wordpress 制作优化大师官方网站
  • 陕西西安网站建设公司数据分析系统
  • aspnet动态网站开发期末考试上海专业做网站
  • 移动端网页百度seo培训课程
  • 免费空间 网站搜索引擎提交入口大全
  • 网站怎么做淘宝客百度的营销推广模式
  • 宁夏网站建设多少钱中国域名注册局官网
  • 淘宝的网站开发历史及难度百度运营公司
  • 重庆龙头寺找做墩子师傅网站线上营销方案
  • 杭州网站推广公司企业seo推广外包
  • 网站制作的流程包括哪些百度知道官网首页登录入口
  • 考互联网营销师证书要多少钱重庆百度seo代理
  • 浏览器网站建设的步骤过程微信软文是什么意思
  • 国外电子商务网站微信公众平台开发
  • 关键词 网站网销怎么做
  • 网站建设公司做销售前景好不好深圳网络广告推广公司
  • 中国icp备案的有多少企业网站优化技术基础
  • 做网站参考文献卡一卡二卡三入口2021
  • 网络科技公司经营范围参考东莞网站优化关键词排名