Files
genode/libports/run/moon.run
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

34 lines
554 B
Plaintext

#
# Lua C++ library test
#
build "core init test/moon"
create_boot_directory
install_config {
<config>
<parent-provides>
<service name="ROM"/>
<service name="RM"/>
<service name="LOG"/>
</parent-provides>
<default-route>
<any-service> <parent/> <any-child/> </any-service>
</default-route>
<start name="test-moon">
<resource name="RAM" quantum="1100K"/>
</start>
</config>
}
build_boot_image {
core init test-moon
ld.lib.so libc.lib.so libc_log.lib.so libm.lib.so
}
append qemu_args " -nographic -m 64 "
run_genode_until forever