[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: lua5.2: removing parser from custom srlua.exe?
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Mon, 10 Feb 2014 09:15:25 -0200
> I would like to glue precompiled lua chunks to my srlua.exe and drop the
> parser to reduce the size of my custom srlua.exe
Download this file into the srlua directory:
http://www.lua.org/extras/5.2/noparser.c
In the srlua Makefile, change this and rebuild:
OBJS= srlua.o noparser.o
If you don't use string.dump, you can also remove it by editing noparser.c
(instructions included in the file).