Compiler optimization back to '-O2'

Undo commit 6a10f03ff. Compiler performance is important, too.
This commit is contained in:
Roberto Ierusalimschy 2020-11-11 15:10:51 -03:00
parent ab1aca94e8
commit 2f4162bc47

View File

@ -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)