summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJoshua Haberman <joshua@reverberate.org>2011-01-21 19:18:22 -0800
committerJoshua Haberman <joshua@reverberate.org>2011-01-21 19:18:22 -0800
commita695b92ccea4b82180ae45d21d7ed4445f7d0769 (patch)
treee98a53f2555983d28e189d8567d27bfdcea6ca7b /Makefile
parent1dea81b1c244d357a6e46ee22c14b36280bf2100 (diff)
Debugging test_def, it's close to working again!
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 42c7d41..af79363 100644
--- a/Makefile
+++ b/Makefile
@@ -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) -Os -c -o $@ $<
+ $(CC) $(CFLAGS) $(CPPFLAGS) -O0 -c -o $@ $<
core/upb_def.lo: core/upb_def.c
- $(CC) $(CFLAGS) $(CPPFLAGS) -Os -c -o $@ $< -fPIC
+ $(CC) $(CFLAGS) $(CPPFLAGS) -O0 -c -o $@ $< -fPIC
lang_ext/lua/upb.so: lang_ext/lua/upb.lo
$(CC) $(CFLAGS) $(CPPFLAGS) -shared -o $@ $< core/libupb_pic.a
@@ -112,13 +112,13 @@ tests/test.proto.pb: tests/test.proto
TESTS=tests/test_string \
tests/test_table \
- tests/test_stream \
-# tests/test_def \
+ tests/test_def \
+# tests/test_stream \
# tests/test_decoder \
# tests/t.test_vs_proto2.googlemessage1 \
# tests/t.test_vs_proto2.googlemessage2 \
# tests/test.proto.pb
-tests: $(TESTS)
+tests: $(LIBUPB) $(TESTS)
OTHER_TESTS=tests/tests \
$(TESTS): $(LIBUPB)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback