aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2020-11-11 15:10:51 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2020-11-11 15:10:51 -0300
commit2f4162bc473b995117e95c88230f637ca3e1c866 (patch)
tree61f1e527d150c7d93aaf18fa88731ee886edbe9a
parentab1aca94e83d2eff1605ea1854df023c814cef21 (diff)
downloadlua-2f4162bc473b995117e95c88230f637ca3e1c866.tar.gz
lua-2f4162bc473b995117e95c88230f637ca3e1c866.tar.bz2
lua-2f4162bc473b995117e95c88230f637ca3e1c866.zip
Compiler optimization back to '-O2'
Undo commit 6a10f03ff. Compiler performance is important, too.
-rw-r--r--makefile10
1 files changed, 0 insertions, 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)
109 $(CC) -o $@ $(MYLDFLAGS) $(LUA_O) $(CORE_T) $(LIBS) $(MYLIBS) $(DL) 109 $(CC) -o $@ $(MYLDFLAGS) $(LUA_O) $(CORE_T) $(LIBS) $(MYLIBS) $(DL)
110 110
111 111
112llex.o:
113 $(CC) $(CFLAGS) -Os -c llex.c
114
115lparser.o:
116 $(CC) $(CFLAGS) -Os -c lparser.c
117
118lcode.o:
119 $(CC) $(CFLAGS) -Os -c lcode.c
120
121
122clean: 112clean:
123 $(RM) $(ALL_T) $(ALL_O) 113 $(RM) $(ALL_T) $(ALL_O)
124 114