blob: 4e0e1549d7dcffa258049e91dfefaf72a0518ab3 [file] [log] [blame]
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05001#!/usr/bin/env bash
Davide Pesavento133067f2020-04-02 22:08:27 -04002set -ex
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05003
Davide Pesavento133067f2020-04-02 22:08:27 -04004pushd "$CACHE_DIR" >/dev/null
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -05005
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
Davide Pesavento133067f2020-04-02 22:08:27 -040020sudo rm -rf ndn-cxx-latest
21git clone --depth 1 https://github.com/named-data/ndn-cxx.git ndn-cxx-latest
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050022LATEST_VERSION=$(git -C ndn-cxx-latest rev-parse HEAD 2>/dev/null || echo UNKNOWN)
23
24if [[ $INSTALLED_VERSION != $LATEST_VERSION ]]; then
Davide Pesavento133067f2020-04-02 22:08:27 -040025 sudo rm -rf ndn-cxx
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050026 mv ndn-cxx-latest ndn-cxx
27else
Davide Pesavento133067f2020-04-02 22:08:27 -040028 sudo rm -rf ndn-cxx-latest
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050029fi
30
31sudo rm -f /usr/local/bin/ndnsec*
32sudo rm -fr /usr/local/include/ndn-cxx
Davide Pesavento1526fee2019-03-18 19:31:55 -040033sudo rm -f /usr/local/lib{,64}/libndn-cxx*
34sudo rm -f /usr/local/lib{,64}/pkgconfig/libndn-cxx.pc
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050035
36pushd ndn-cxx >/dev/null
37
Davide Pesavento133067f2020-04-02 22:08:27 -040038if has CentOS-8 $NODE_LABELS; then
39 # https://bugzilla.redhat.com/show_bug.cgi?id=1721553
40 PCH="--without-pch"
41fi
42
Davide Pesavento042dfb32020-07-23 21:07:16 -040043./waf --color=yes configure --disable-static --enable-shared --without-osx-keychain $PCH
Davide Pesavento133067f2020-04-02 22:08:27 -040044./waf --color=yes build -j$WAF_JOBS
45sudo_preserve_env PATH -- ./waf --color=yes install
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050046
47popd >/dev/null
48popd >/dev/null
49
Davide Pesavento133067f2020-04-02 22:08:27 -040050if has CentOS-8 $NODE_LABELS; then
51 sudo tee /etc/ld.so.conf.d/ndn.conf >/dev/null <<< /usr/local/lib64
52fi
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050053if has Linux $NODE_LABELS; then
54 sudo ldconfig
Ashlesh Gawande0b2897e2018-06-20 14:40:47 -050055fi