From 2f4162bc473b995117e95c88230f637ca3e1c866 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 11 Nov 2020 15:10:51 -0300 Subject: [PATCH] Compiler optimization back to '-O2' Undo commit 6a10f03ff. Compiler performance is important, too. --- makefile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/makefile b/makefile index 7af55332..9e537dcc 100644 --- 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)