genode/libports/lib/mk/luacxx.mk
Christian Helmuth 0200c27e33 Lua: Port of Lua runtime and simple example
The Lua runtime library is built in two variants: ANSI C and C++. The
C++ provides all Lua API function with C++ linkage and uses C++
exceptions instead of setjmp/longjmp for protected execution of Lua
chunks.

The ported version of Lua is 5.1.5.
2012-05-29 13:54:52 +02:00

12 lines
191 B
Makefile

#
# Lua library (C++ variant)
#
include $(REP_DIR)/lib/mk/lua.inc
SRC_C = $(LUA_CORE_C) $(LUA_LIB_C)
# force compilation with C++ compiler
CUSTOM_CC = $(CXX)
CC_WARN += -Wno-sign-compare