lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 2f4162bc473b995117e95c88230f637ca3e1c866
parent ab1aca94e83d2eff1605ea1854df023c814cef21
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date:   Wed, 11 Nov 2020 15:10:24 -0300

Compiler optimization back to '-O2'

Undo commit 6a10f03ff. Compiler performance is important, too.

Diffstat:
Mmakefile | 10----------
1 file changed, 0 insertions(+), 10 deletions(-)

diff --git a/makefile b/makefile @@ -109,16 +109,6 @@ $(LUA_T): $(LUA_O) $(CORE_T) $(CC) -o $@ $(MYLDFLAGS) $(LUA_O) $(CORE_T) $(LIBS) $(MYLIBS) $(DL) -llex.o: - $(CC) $(CFLAGS) -Os -c llex.c - -lparser.o: - $(CC) $(CFLAGS) -Os -c lparser.c - -lcode.o: - $(CC) $(CFLAGS) -Os -c lcode.c - - clean: $(RM) $(ALL_T) $(ALL_O)