eda28feb2e
When VECTX is enabled as a kernel option and non-EFI loaders are built, many reads will fail due to the mis-match of whether LOADER_VERIEXEC_VECTX or not in readin.h. Source that includes bootstrap.h must ensure the kernel option agrees with the compile time CFLAGS in the various make related files. Submitted by: bret_ketchum@dell.com (original revision) Reviewed by: sjg, bdrewery, dab, bret_ketchum@dell.com MFC after: 1 week Sponsored by: Dell EMC Isilon Differential Revision: https://reviews.freebsd.org/D29993
47 lines
1.1 KiB
Makefile
47 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 lpager.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}
|
|
|
|
CFLAGS.lutils.c+= -I${SRCTOP}/sys/teken -I${SRCTOP}/contrib/pnglite
|
|
|
|
.if ${MACHINE_CPUARCH} == "amd64" && ${DO32:U0} == 0
|
|
CFLAGS+= -fPIC
|
|
.endif
|
|
|
|
.include "${BOOTSRC}/veriexec.mk"
|
|
|
|
.include <bsd.lib.mk>
|