506f364029
FreeBSDlua ("flua") is a FreeBSD-private lua, flavored with whatever extensions we need for base system operations. We currently support a subset of lfs and lposix that are used in the rewrite of makesyscall.sh into lua, added in r354786. flua is intentionally written such that one can install standard lua and some set of lua modules from ports and achieve the same effect. linit_flua is a copy of linit.c from contrib/lua with lfs and lposix added in. This is similar to what we do in stand/. linit.c has been renamed to make it clear that this has flua-specific bits. luaconf has been slightly obfuscated to make extensions more difficult. Part of the problem is that flua is already hard enough to use as a bootstrap tool because it's not in PATH- attempting to do extension loading would require a special bootstrap version of flua with paths changed to protect the innocent. src.lua.mk has been added to make it easy for in-tree stuff to find flua, whether it's bootstrap-flua or relying on PATH frobbing by Makefile.inc1. Reviewed by: brooks, emaste (both earlier version), imp Differential Revision: https://reviews.freebsd.org/D21893
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
.PATH: ${LUASRC}
|
|
.PATH: ${LIBLUASRC}
|
|
|
|
.include "${BOOTSRC}/lua.mk"
|
|
|
|
LIB= lua
|
|
INTERNALLIB=
|
|
|
|
# Core Lua.
|
|
SRCS= lapi.c lcode.c lctype.c ldebug.c ldo.c ldump.c lfunc.c lgc.c llex.c \
|
|
lmem.c lobject.c lopcodes.c lparser.c lstate.c lstring.c ltable.c \
|
|
ltm.c lundump.c lvm.c lzio.c
|
|
SRCS+= lauxlib.c lbaselib.c lstrlib.c loadlib.c
|
|
|
|
# These aren't yet included, but link now, omitting them saves 15k
|
|
#SRCS+= lcorolib.c ldblib.c lutf8lib.c
|
|
|
|
# These aren't yet compatible with the boot environment, and some may never be
|
|
#SRCS+= lbitlib.c liolib.c lmathlib.c loslib.c ltablib.c
|
|
|
|
# Our utilities.
|
|
SRCS+= lerrno.c lstd.c lutils.c
|
|
|
|
.PATH: ${FLUASRC}/modules
|
|
SRCS+= lfs.c
|
|
|
|
WARNS= 3
|
|
|
|
CFLAGS+= -DLUA_PATH=\"${LUAPATH}\" -DLUA_PATH_DEFAULT=\"${LUAPATH}/\?.lua\"
|
|
CFLAGS+= -ffreestanding -nostdlib -DLUA_USE_POSIX
|
|
CFLAGS+= -fno-stack-protector -D__BSD_VISIBLE
|
|
CFLAGS+= -I${BOOTSRC}/include -I${LIBLUASRC} -I${LUASRC} -I${LDRSRC}
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 0
|
|
CFLAGS+= -fPIC
|
|
.endif
|
|
.if ${MK_LOADER_VERIEXEC} == "yes"
|
|
CFLAGS+= -I${SRCTOP}/lib/libsecureboot/h -DLOADER_VERIEXEC
|
|
.endif
|
|
|
|
.include <bsd.lib.mk>
|