# my_lua_v532 **Repository Path**: linux2014/my_lua_v532 ## Basic Information - **Project Name**: my_lua_v532 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-18 - **Last Updated**: 2025-06-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README --- ### 代码练习,代码复制于https://gitee.com/linux2014/lua_v532的wjt_test分支; ### 源码下载于,20220626,https://github.com/lua/lua/tree/v5.3.2 ### 官网https://www.lua.org/home.html ### 《Lua设计与实现》作者的代码分析在: https://github.com/lichuang/Lua-Source-Internal https://github.com/lichuang/Lua-5.1.4-codedump 已保存进docs目录下; ### 构建Lua解释器: https://zhuanlan.zhihu.com/p/49972755 ### 源码解析: https://zhuanlan.zhihu.com/p/604830288?utm_id=0 https://manistein.github.io/blog/post/program/let-us-build-a-lua-interpreter/%E6%9E%84%E5%BB%BAlua%E8%A7%A3%E9%87%8A%E5%99%A8part12/ https://zhuanlan.zhihu.com/p/109030376 ### lua词法解析 https://zhuanlan.zhihu.com/p/577617098?utm_id=0 https://github.com/Manistein/dummylua-tutorial ### lua的包管理器: https://gitee.com/linux2014/luarocks_v390 ### lua实战教程合集: https://github.com/LewisJEllis/awesome-lua https://github.com/love2d-community/awesome-love2d http://lua-users.org/wiki/LuaTutorial https://www.runoob.com/manual/lua53doc/ ### lua游戏编程 https://www.yiibai.com/lua/lua_game_programing.html# https://github.com/Apress/Develop-Games-Raspberry-Pi-Lua-LOVE ### lua文档合集: https://www.lua.org/doc/ ### lua在网络安全中的应用: http://blog.nsfocus.net/lua-ddos/ https://www.docin.com/p-2242254074.html https://baijiahao.baidu.com/s?id=1680414155406176578&wfr=spider&for=pc ### lua项目实战: https://gitee.com/linux2014/lua_games https://gitee.com/linux2014/kong ### 本文将带领大家精读3个Nginx Lua编程实战案例,学不会就来砍我 https://blog.csdn.net/m0_63437643/article/details/122452850 https://baijiahao.baidu.com/s?id=1677751910218260441&wfr=spider&for=pc ### Lua游戏脚本开发(完整版) https://www.bilibili.com/video/BV1U54y1e7C2?p=1&vd_source=932b2633a1ef2d04720b7ff9de33f196 ### 史上最全的lua脚本实战-黑马程序员-架构师 https://www.bilibili.com/video/av842836564?p=2&vd_source=932b2633a1ef2d04720b7ff9de33f196 ### Love2d游戏开发入门中文教程全网独家 https://www.bilibili.com/video/BV16Q4y1z7Hd/?spm_id_from=333.788.recommend_more_video.6&vd_source=932b2633a1ef2d04720b7ff9de33f196 ### 游戏服务器开发 Skynet技术点之源码剖析 时间轮定时器 https://www.bilibili.com/video/BV1hM4y1u7Vn?spm_id_from=333.337.search-card.all.click&vd_source=932b2633a1ef2d04720b7ff9de33f196 ### lua源码解析: https://blog.csdn.net/weibo1230123/article/details/114709437 百度网盘:lua设计与实现 --- --- ### 网络教程:https://www.runoob.com/lua/lua-environment.html ``` curl -R -O http://www.lua.org/ftp/lua-5.3.2.tar.gz ``` ### Linux 系统上安装 ``` curl -R -O http://www.lua.org/ftp/lua-5.3.0.tar.gz tar zxf lua-5.3.0.tar.gz cd lua-5.3.0 make linux test make install ``` ### Mac OS X 系统上安装 ``` curl -R -O http://www.lua.org/ftp/lua-5.3.0.tar.gz tar zxf lua-5.3.0.tar.gz cd lua-5.3.0 make macosx test make install ``` ###windows,msys2下安装: ``` #!/bin/sh export INSTALL_TOP=/d/D/install_dir/lua_v532 && make linux -j4 && make install && make clean ``` --- --- This is Lua 5.3.2, released on 25 Nov 2015. For installation instructions, license details, and further information about Lua, see doc/readme.html.