forked from facebookincubator/Glean
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_deps.sh
executable file
·43 lines (36 loc) · 1.04 KB
/
install_deps.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env bash
# Copyright (c) Meta Platforms, Inc. and affiliates.
# All rights reserved.
#
# This source code is licensed under the BSD-style license found in the
# LICENSE file in the root directory of this source tree.
#
# To build without root privs (the default), you will need to set:
#
# > export LD_LIBRARY_PATH=$HOME/.hsthrift/lib
# > export PKG_CONFIG_PATH=$HOME/.hsthrift/lib/pkgconfig
# > export PATH=$PATH:$HOME/.hsthrift/bin
#
set -e
HSTHRIFT_REPO=https://github.com/facebookincubator/hsthrift.git
THREADS=4
EXTRA_DEPS="rocksdb"
while [ "$#" -gt 0 ]; do
case "$1" in
--threads) THREADS="$2"; shift;;
--use-system-libs) EXTRA_DEPS="";;
*)
echo "syntax: install_deps.sh [--use-system-libs] [--threads N]"
exit 1;;
esac
shift
done
if test ! -d hsthrift; then
git clone "${HSTHRIFT_REPO}"
fi
# Make sure this is available for a subsequent cabal update
if test ! -f glean.cabal; then
make glean.cabal
fi
cd hsthrift
./new_install_deps.sh "${EXTRA_DEPS}" --threads "${THREADS}"