1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:17:44 +00:00

LibM LibC: add fixes for Lua port.

This commit is contained in:
Mustafa Ali CAN 2019-05-29 07:20:04 -04:00 committed by Andreas Kling
parent 5fa8858dfb
commit 3ffb2ad4e0
4 changed files with 41 additions and 1 deletions

View file

@ -1,11 +1,16 @@
#!/bin/sh
PORT_DIR=lua
MAKEOPTS='generic'
INSTALLOPTS="INSTALL_TOP=$SERENITY_ROOT/Root/"
function fetch() {
run_fetch_web "http://www.lua.org/ftp/lua-5.3.5.tar.gz"
run_patch lua.patch -p1
}
function configure() {
run_export_env CC i686-pc-serenity-gcc
}
function run_make() {
run_command make $MAKEOPTS "$@"
}