代码搜索:Lua
找到约 9,588 项符合「Lua」的源代码
代码结果 9,588
www.eeworm.com/read/105158/15676983
configure
#!/bin/sh
# Lua does not use GNU autoconf; just edit ./config if needed to suit your
# platform and then run make.
# This shows the parameters currently set in ./config:
make echo
# If you want con
www.eeworm.com/read/105158/15676987
update
This is Lua 5.0.2, an update of Lua 5.0 that includes the following changes,
which fix all known bugs in Lua 5.0. For the exact differences, see DIFFS.
src/ldo.c
Attempt to resume running coroutine
www.eeworm.com/read/105158/15676988
build
# If you don't want to use make, run this script.
# But make sure you read config to see what can be customized.
# Easiest way to build bin/lua:
# cc -O2 -o bin/lua -Iinclude -Isrc src/*.c src/lib/*
www.eeworm.com/read/105158/15677000
c noparser.c
/*
* The code below can be used to make a Lua core that does not contain the
* parsing modules (lcode, llex, lparser), which represent 35% of the total core.
* You'll only be able to load binary files
www.eeworm.com/read/105158/15677011
makefile
# makefile for Lua distribution (includes)
LUA= ..
include $(LUA)/config
SRCS= lua.h lualib.h lauxlib.h
all:
clean:
co:
co -q -f -M $(SRCS)
klean: clean
rm -f $(SRCS)
www.eeworm.com/read/105158/15677016
manifest
MANIFEST contents of Lua 5.0.2 distribution on Wed Mar 17 17:59:01 BRT 2004
lua-5.0.2
lua-5.0.2/COPYRIGHT
lua-5.0.2/DIFFS
lua-5.0.2/HISTORY
lua-5.0.2/INSTALL
lua-5.0.2/MANIFEST
lua-5.0.2/Makefile
lua-
www.eeworm.com/read/105158/15677033
c lopcodes.c
/*
** $Id: lopcodes.c,v 1.22 2002/12/04 17:38:31 roberto Exp $
** extracted automatically from lopcodes.h by mkprint.lua
** DO NOT EDIT
** See Copyright Notice in lua.h
*/
#define lopcodes_c
#inclu
www.eeworm.com/read/105158/15677039
readme
This is luac, the Lua compiler.
There are man pages for it in both nroff and html in ../../doc.
luac translates Lua programs into binary files that can be loaded latter.
The main advantages of pre-co