blob: 4e0e1549d7dcffa258049e91dfefaf72a0518ab3 [file] [log] [blame]
Varun Patila24bd3e2020-11-24 10:08:33 +05301#!/usr/bin/env bash
2set -ex
3
4pushd "$CACHE_DIR" >/dev/null
5
6INSTALLED_VERSION=
7if has OSX $NODE_LABELS; then
8 BOOST=$(brew ls --versions boost)
9 OLD_BOOST=$(cat boost.txt || :)
10 if [[ $OLD_BOOST != $BOOST ]]; then
11 echo "$BOOST" > boost.txt
12 INSTALLED_VERSION=NONE
13 fi
14fi
15
16if [[ -z $INSTALLED_VERSION ]]; then
17 INSTALLED_VERSION=$(git -C ndn-cxx rev-parse HEAD 2>/dev/null || echo NONE)
18fi
19
20sudo rm -rf ndn-cxx-latest
21git clone --depth 1 https://github.com/named-data/ndn-cxx.git ndn-cxx-latest
22LATEST_VERSION=$(git -C ndn-cxx-latest rev-parse HEAD 2>/dev/null || echo UNKNOWN)
23
24if [[ $INSTALLED_VERSION != $LATEST_VERSION ]]; then
25 sudo rm -rf ndn-cxx
26 mv ndn-cxx-latest ndn-cxx
27else
28 sudo rm -rf ndn-cxx-latest
29fi
30
31sudo rm -f /usr/local/bin/ndnsec*
32sudo rm -fr /usr/local/include/ndn-cxx
33sudo rm -f /usr/local/lib{,64}/libndn-cxx*
34sudo rm -f /usr/local/lib{,64}/pkgconfig/libndn-cxx.pc
35
36pushd ndn-cxx >/dev/null
37
38if has CentOS-8 $NODE_LABELS; then
39 # https://bugzilla.redhat.com/show_bug.cgi?id=1721553
40 PCH="--without-pch"
41fi
42
43./waf --color=yes configure --disable-static --enable-shared --without-osx-keychain $PCH
44./waf --color=yes build -j$WAF_JOBS
45sudo_preserve_env PATH -- ./waf --color=yes install
46
47popd >/dev/null
48popd >/dev/null
49
50if has CentOS-8 $NODE_LABELS; then
51 sudo tee /etc/ld.so.conf.d/ndn.conf >/dev/null <<< /usr/local/lib64
52fi
53if has Linux $NODE_LABELS; then
54 sudo ldconfig
55fi