| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix typo, its supposed to be #config | Waqar Ahmed | 2024-11-18 | 1 | -1/+1 |
| | | | | | | | | | Otherwise compile errors out when importing the file with the error: ```odin vendor/lua/5.2/lua.odin(10:15) Error: Undeclared name: config LUA_SHARED :: config(LUA_SHARED, false) ``` | ||||
| * | Fix `-vet-tabs` issues | gingerBill | 2024-08-24 | 1 | -1/+1 |
| | | |||||
| * | Add Lua example to vendor\lua as well as basic tests. | Jeroen van Rijn | 2024-07-20 | 1 | -5/+43 |
| | | |||||
| * | Remove LUA panic for non-big-3 OS | Jeroen van Rijn | 2024-07-20 | 4 | -24/+8 |
| | | |||||
| * | Update LUA imports for Darwin. | Jeroen van Rijn | 2024-07-20 | 4 | -16/+24 |
| | | |||||
| * | Replace `core:*` to `base:*` where appropriate | gingerBill | 2024-01-28 | 4 | -8/+8 |
| | | |||||
| * | add 'shared' config to vendor libraries | flysand7 | 2023-10-14 | 4 | -20/+80 |
| | | |||||
| * | Fix `lua.MAXSTACK` | gingerBill | 2023-05-24 | 4 | -4/+4 |
| | | |||||
| * | lua MAXSTACK should be 1000000 on 32 bits OR greater | Clay Murray | 2023-05-14 | 1 | -1/+1 |
| | | | | | | | | | | | | | Code only checks if 4 bytes for `rawptr` size. However lua defines the macro (that I assume the odin code is based on) as: ``` /* @@ LUAI_IS32INT is true iff 'int' has (at least) 32 bits. */ #define LUAI_IS32INT ((UINT_MAX >> 30) >= 3) ``` This error broke `upvalues` because it would be looking for the wrong index for lua to find them at. | ||||
| * | Generalize the foreign import for unsupported platforms | gingerBill | 2023-04-05 | 4 | -4/+4 |
| | | |||||
| * | Update README.md | gingerBill | 2023-04-05 | 1 | -1/+8 |
| | | |||||
| * | Add `vendor:lua/5.1` | gingerBill | 2023-04-05 | 11 | -2/+2051 |
| | | |||||
| * | Minor fixes | gingerBill | 2023-04-05 | 2 | -6/+6 |
| | | |||||
| * | Add `vendor:lua/5.2` | gingerBill | 2023-04-05 | 10 | -0/+2001 |
| | | |||||
| * | Alignment fix | gingerBill | 2023-04-05 | 1 | -3/+3 |
| | | |||||
| * | Add `vendor:lua/5.3` | gingerBill | 2023-04-05 | 10 | -0/+2370 |
| | | |||||
| * | Add linux binaries | gingerBill | 2023-04-05 | 3 | -0/+4 |
| | | |||||
| * | Minor change to `L_loadbuffer`'s signature | gingerBill | 2023-04-05 | 1 | -1/+1 |
| | | |||||
| * | Fix typo | gingerBill | 2023-04-05 | 1 | -1/+1 |
| | | |||||
| * | Add LICENSE | gingerBill | 2023-04-05 | 1 | -0/+6 |
| | | |||||
| * | Add README.md | gingerBill | 2023-04-05 | 1 | -0/+5 |
| | | |||||
| * | Add `vendor:lua/5.4` | gingerBill | 2023-04-05 | 8 | -0/+2445 |