Rename project from Lua to Lush
Binary is now 'lush', library is 'liblush.a'. Version banner shows "Lush 0.1.0" with original Lua copyright preserved. Adds LUSH_VERSION defines and _LUSH_VERSION global. Internal C API names, env vars, and default paths are unchanged for upstream compatibility.
This commit is contained in:
6
onelua.c
6
onelua.c
@@ -3,15 +3,15 @@
|
||||
** Compiling just this file generates a complete Lua stand-alone
|
||||
** program:
|
||||
**
|
||||
** $ gcc -O2 -std=c99 -o lua onelua.c -lm
|
||||
** $ gcc -O2 -std=c99 -o lush onelua.c -lm
|
||||
**
|
||||
** or (for C89)
|
||||
**
|
||||
** $ gcc -O2 -std=c89 -DLUA_USE_C89 -o lua onelua.c -lm
|
||||
** $ gcc -O2 -std=c89 -DLUA_USE_C89 -o lush onelua.c -lm
|
||||
**
|
||||
** or (for Linux)
|
||||
**
|
||||
** gcc -O2 -o lua -DLUA_USE_LINUX -Wl,-E onelua.c -lm -ldl
|
||||
** gcc -O2 -o lush -DLUA_USE_LINUX -Wl,-E onelua.c -lm -ldl
|
||||
**
|
||||
*/
|
||||
|
||||
|
||||
Reference in New Issue
Block a user