https://github.com/simdsoft/luac
https://github.com/simdsoft/luac
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/simdsoft/luac
- Owner: simdsoft
- License: mit
- Created: 2020-07-16T16:02:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-20T06:05:46.000Z (over 5 years ago)
- Last Synced: 2025-03-28T06:31:18.506Z (11 months ago)
- Language: CMake
- Size: 6.84 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# luac
## Purpose
1. Make lua5.1~5.3 byte code compatible with x86, x64
2. Embedded system compatible: Android/iOS
## CMakeLists.txt
1. Download lua package from https://www.lua.org/versions.html
2. Uncompress lua-5.x.x.tar.gz
3. Copy CMakeLists.txt to root of lua-5.x.x
4. Generate project: ```cmake -Bbuild . -DLUA_VER=```, please specify LUA_VER for project name, such as lua54.
## Notes
lua54 official byte code is compatible both x86, x64, so no need do any patch.