summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2011-01-24 21:15:44 -0800
committerJoshua Haberman <joshua@reverberate.org>2011-01-24 21:15:44 -0800
commit93381f1411def0dba5677b71cd4df859d99777f3 (patch)
tree2de4fd9d3e377fe5469028ac057e6ffa7df40f50 /Makefile
parentfe659c8c93c464fcbcfb5739935a2e4341d01fd4 (diff)
Decoder compiles again! But probably doesn't work.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 04779c0..46cb836 100644
--- a/Makefile
+++ b/Makefile
@@ -62,8 +62,8 @@ SRC=core/upb.c \
core/upb_string.c \
descriptor/descriptor.c \
core/upb_def.c \
+ stream/upb_decoder.c \
# core/upb_msg.c \
-# stream/upb_decoder.c \
# stream/upb_stdio.c \
# stream/upb_strstream.c \
# stream/upb_textprinter.c
@@ -74,9 +74,9 @@ OTHERSRC=src/upb_encoder.c src/upb_text.c
# Override the optimization level for upb_def.o, because it is not in the
# critical path but gets very large when -O3 is used.
core/upb_def.o: core/upb_def.c
- $(CC) $(CFLAGS) $(CPPFLAGS) -O0 -c -o $@ $<
+ $(CC) $(CFLAGS) $(CPPFLAGS) -Os -c -o $@ $<
core/upb_def.lo: core/upb_def.c
- $(CC) $(CFLAGS) $(CPPFLAGS) -O0 -c -o $@ $< -fPIC
+ $(CC) $(CFLAGS) $(CPPFLAGS) -Os -c -o $@ $< -fPIC
lang_ext/lua/upb.so: lang_ext/lua/upb.lo
$(CC) $(CFLAGS) $(CPPFLAGS) -shared -o $@ $< core/libupb_pic.a
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback