Re: something about strip debug information
[
Date Prev][
Date Next][
Thread Prev][
Thread Next]
[
Date Index]
[
Thread Index]
- Subject: Re: something about strip debug information
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: 2006年2月16日 08:51:58 -0200
Here is a quick fix:
diff orig/ldump.c ./ldump.c
131c131
< DumpString((f->source==p) ? NULL : f->source,D);
---
> DumpString((f->source==p || D->strip) ? NULL : f->source,D);
diff orig/lundump.c ./lundump.c
204c204
< return LoadFunction(&S,NULL);
---
> return LoadFunction(&S,luaS_newliteral(L,"=?"));
I hope it helps.
--lhf