From e75009b5fb15a82218763618006708a6ce4a2242 Mon Sep 17 00:00:00 2001 From: Josh MacDonald Date: Wed, 14 Sep 2016 14:21:57 -0700 Subject: [PATCH] Add lightstep-tracer-cpp v0.14 to the build_container script --- ci/build_container/build_container.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ci/build_container/build_container.sh b/ci/build_container/build_container.sh index c217846b8bbf..b2eeb563349d 100755 --- a/ci/build_container/build_container.sh +++ b/ci/build_container/build_container.sh @@ -108,6 +108,16 @@ wget -O tclap-1.2.1.tar.gz https://sourceforge.net/projects/tclap/files/tclap-1. tar xf tclap-1.2.1.tar.gz rm tclap-1.2.1.tar.gz +# lightstep +wget https://github.com/lightstep/lightstep-tracer-cpp/releases/download/v0_14/lightstep-tracer-cpp-0.14.tar.gz +tar xf lightstep-tracer-cpp-0.14.tar.gz +cd lightstep-tracer-cpp-0.14 +./configure --disable-grpc --prefix=$THIRDPARTY_BUILD --enable-shared=no \ + protobuf_CFLAGS="-I$THIRDPARTY_BUILD/include" protobuf_LIBS="-L$THIRDPARTY_BUILD/lib -lprotobuf" +make install +rm -rf lightstep-tracer-cpp-0.14 +cd .. + # googletest wget -O googletest-1.8.0.tar.gz https://github.com/google/googletest/archive/release-1.8.0.tar.gz tar xf googletest-1.8.0.tar.gz