summaryrefslogtreecommitdiff
path: root/travis.sh
diff options
context:
space:
mode:
authorJosh Haberman <jhaberman@gmail.com>2015-05-17 16:11:07 -0700
committerJosh Haberman <jhaberman@gmail.com>2015-05-17 16:24:08 -0700
commite2840a4aa1b6a7a2ca1421d0d6da3e56992e5090 (patch)
treee0712b93de15663281e0da4fb45800d8d3b83489 /travis.sh
parent0c7eb664fc134b67dec304077e39eecdaff940f3 (diff)
Restructure tables for C89 port and smaller size.
Changes the data layout of tables slightly so that string keys are prefixed with their size, rather than the size being inline in the table itself. This has a few benefits: 1. inttables shrink a bit, because there is no longer a wasted and unused size field sitting in them. 2. This avoids the need to have a union in the table. This is important for an impending C89 port of upb, since C89 has literally no way of statically initializing a non-first union member.
Diffstat (limited to 'travis.sh')
-rwxr-xr-xtravis.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/travis.sh b/travis.sh
index f2ac154..8b1a0dc 100755
--- a/travis.sh
+++ b/travis.sh
@@ -104,6 +104,9 @@ coverage_after_success() {
set -e
set -x
+$CC --version
+$CXX --version
+
if [ "$1" == "after_failure" ]; then
# Upload failing tree to S3.
curl -sL https://raw.githubusercontent.com/travis-ci/artifacts/master/install | bash
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback