1
0
mirror of https://github.com/elua/elua.git synced 2025-01-08 20:56:17 +08:00

?.lc added to LUA_PATH_DEFAULT, to allow Lua to require() files built with the new romfs=compile mode

This commit is contained in:
Dado Sutter 2010-01-27 22:23:07 +00:00
parent f968670490
commit 7da38ff6c4

View File

@ -90,7 +90,7 @@
//## Modified for eLua
//## Defaults search modules path to our ROM File System
#ifndef LUA_RPC
#define LUA_PATH_DEFAULT "/rom/?.lua"
#define LUA_PATH_DEFAULT "/rom/?.lua;/rom/?.lc"
#else
#define LUA_PATH_DEFAULT \
".\\?.lua;" LUA_LDIR"?.lua;" LUA_LDIR"?\\init.lua;" \
@ -105,7 +105,7 @@
#define LUA_CDIR LUA_ROOT "lib/lua/5.1/"
#ifndef LUA_RPC
#define LUA_PATH_DEFAULT "/rom/?.lua"
#define LUA_PATH_DEFAULT "/rom/?.lua;/rom/?.lc"
#else
#define LUA_PATH_DEFAULT \